Skip to content

Commit e61d2e6

Browse files
lint error ์ˆ˜์ •
1 parent 7575a2b commit e61d2e6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import java.util.*;
22

3-
public class MrKeeplearning {
3+
class MrKeeplearningContainsDuplicate {
44
public boolean containsDuplicate(int[] nums) {
55
HashSet<Integer> hashSet = new HashSet<>();
66
for (int num : nums) {
@@ -10,4 +10,4 @@ public boolean containsDuplicate(int[] nums) {
1010
}
1111
return false;
1212
}
13-
}
13+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
class MrKeeplearningValidPalindrome {
2+
public boolean isPalindrome(String s) {
3+
4+
return false;
5+
}
6+
}

0 commit comments

Comments
ย (0)