forked from PacktPublishing/Java-Coding-Problems
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStrings.java
More file actions
72 lines (51 loc) · 1.6 KB
/
Copy pathStrings.java
File metadata and controls
72 lines (51 loc) · 1.6 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package modern.challenge;
import java.util.stream.IntStream;
public final class Strings {
private Strings() {
throw new AssertionError("Cannot be instantiated");
}
public static boolean isPalindromeV1(String str) {
if (str == null || str.isBlank()) {
// or throw IllegalArgumentException
return false;
}
int left = 0;
int right = str.length() - 1;
while (right > left) {
if (str.charAt(left) != str.charAt(right)) {
return false;
}
left++;
right--;
}
return true;
}
public static boolean isPalindromeV2(String str) {
if (str == null || str.isBlank()) {
// or throw IllegalArgumentException
return false;
}
int n = str.length();
for (int i = 0; i < n / 2; i++) {
if (str.charAt(i) != str.charAt(n - i - 1)) {
return false;
}
}
return true;
}
public static boolean isPalindromeV3(String str) {
if (str == null || str.isBlank()) {
// or throw IllegalArgumentException
return false;
}
return str.equals(new StringBuilder(str).reverse().toString());
}
public static boolean isPalindromeV4(String str) {
if (str == null || str.isBlank()) {
// or throw IllegalArgumentException
return false;
}
return IntStream.range(0, str.length() / 2)
.noneMatch(p -> str.charAt(p) != str.charAt(str.length() - p - 1));
}
}