- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolution.java
More file actions
Latest commit
33 lines (13 loc) · 480 Bytes
/
Copy pathSolution.java
File metadata and controls
33 lines (13 loc) · 480 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
32
publicstaticStringgetSmallestAndLargest(Strings, intk) {
Stringsmallest = "";
Stringlargest = "";
smallest = largest = s.substring(0, k);
for (inti=1; i<s.length()-k+1; i++) {
Stringsubstr = s.substring(i, i+k);
if (smallest.compareTo(substr) > 0)
smallest = substr;
if (largest.compareTo(substr) < 0)
largest = substr;
}
returnsmallest + "\n" + largest;
}