https://www.hackerrank.com/challenges/java-string-compare/problem?isFullScreen=true
import java.util.Scanner;
public class Solution {
public static String getSmallestAndLargest(String s, int k) {
//String smallest = "";
//String largest = "";
String smallest = s.substring(0,k);
String largest = s.substring(0,k);
// Complete the function
// 'smallest' must be the lexicographically smallest substring of length 'k'
// 'largest' must be the lexicographically largest substring of length 'k'
String text = "";
for(int i=0; i <=s.length()-k; i++){
text = s.substring(i,i+k);
if(smallest.compareTo(text) > 0){
smallest = text;
}
if(largest.compareTo(text) <= 0){
largest = text;
}
}
return smallest + "\n" + largest;
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String s = scan.next();
int k = scan.nextInt();
scan.close();
System.out.println(getSmallestAndLargest(s, k));
}
}
String[] SArr = new String[s.length()];
String test = "";
for(int i=0; i <s.length()-k; i++){
test = s.substring(i,i+k);
SArr[i] = test;
}
=> 처음에는 k만큼씩 잘라서 배열에 넣고 하나씩 다시 비교를 해야 하나 싶었다....
We define the following terms:
- Lexicographical Order, also known as alphabetic or dictionary order, orders characters as follows:
For example, ball < cat, dog < dorm, Happy < happy, Zoo < ball. - A substring of a string is a contiguous block of characters in the string. For example, the substrings of abc are a, b, c, ab, bc, and abc.
Given a string, , and an integer, , complete the function so that it finds the lexicographically smallest and largest substrings of length .
Function Description
Complete the getSmallestAndLargest function in the editor below.
getSmallestAndLargest has the following parameters:
- string s: a string
- int k: the length of the substrings to find
Returns
- string: the string ' + "\n" + ' where and are the two substrings
Input Format
The first line contains a string denoting .
The second line contains an integer denoting .
Constraints
- consists of English alphabetic letters only (i.e., [a-zA-Z]).
Sample Input 0
welcometojava
3
Sample Output 0
ava
wel
Explanation 0
String has the following lexicographically-ordered substrings of length :
We then return the first (lexicographically smallest) substring and the last (lexicographically largest) substring as two newline-separated values (i.e., ava\nwel).
The stub code in the editor then prints ava as our first line of output and wel as our second line of output.
'HackerRank > JAVA' 카테고리의 다른 글
Java Anagrams (0) | 2024.01.17 |
---|---|
Java String Reverse (0) | 2024.01.17 |
Java Substring (0) | 2024.01.16 |
Java Strings Introduction (0) | 2024.01.16 |
Java Date and Time (0) | 2024.01.12 |