import java.util.*; public class winsen { /* T : n^2 S: O(1) 2, 3, 5, 7, */ public static int countPrime(int n){ int count=0; for ( int i=2; i [] Output: "apple" Input: s = "abpcplea", dictionary = ["a","b","c"] Output: "a" * * * T : O (n log(N) ). M*N*K * * * * */ public static String lexSmallStringByRemovingSomeCharsFromString( String str, String[] dict){ ListpossibleStrings= new ArrayList(); for( String s : dict){ // T : O(len(dict)) if( isPossible( str, s)) possibleStrings.add(s); } if (possibleStrings.isEmpty()) return ""; Collections.sort(possibleStrings , (a,b) -> ( b.length()-a.length()) ); // T : O(nlog(n)) System.out.println(possibleStrings); return possibleStrings.stream() .filter( strr -> strr.length()==possibleStrings.get(0).length()) .sorted().findFirst().orElse(""); // T : O(nlog(n)) } public static boolean isPossible( String str, String s){ int m = str.length(), n= s.length(), i=0, j=0; while (i 결과 : 선택되지 않음
부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.
Copyright© 2022 湘ICP备2022001581号-3