-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathDuplicateChars.java
33 lines (26 loc) · 1005 Bytes
/
DuplicateChars.java
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
// Check if the given String has duplicate characters, ignoring case.
public class DuplicateChars {
public static void main(String[] args) {
String str1 = "duplicate";
String str2 = "character";
System.out.println("'" + str1 + "' contains duplicate characters? " + checkDuplicateChars(str1));
System.out.println("'" + str2 + "' contains duplicate characters? " + checkDuplicateChars(str2));
}
static boolean checkDuplicateChars(String str) {
// Trim leading and trailing spaces
str = str.trim();
// Convert all the characters in the String to lower case
str = str.toLowerCase();
// Convert the given string to a char array
char[] chars = str.toCharArray();
// Check each characters present in the string
for (int i = 0; i < chars.length; i++) {
for (int j = i + 1; j < chars.length; j++) {
if (chars[i] == chars[j]) {
return true; // Found a duplicate character
}
}
}
return false; // No duplicate character found
}
}