-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathSolution.java
More file actions
31 lines (26 loc) · 774 Bytes
/
Solution.java
File metadata and controls
31 lines (26 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Problem: https://www.hackerrank.com/challenges/java-string-compare
// Difficulty: Easy
// Score: 10
import java.util.Scanner;
public class Solution {
public static String getSmallestAndLargest(String s, int k) {
String smallest = s.substring(0, k);
String largest = s.substring(0, k);
for (int i = 0; i <= s.length() - k; i++) {
String subStr = s.substring(i, k + i);
if (smallest.compareTo(subStr) > 0) {
smallest = subStr;
} else if (largest.compareTo(subStr) < 0) {
largest = subStr;
}
}
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));
}
}