We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d964a9 commit 5dd3628Copy full SHA for 5dd3628
contains-duplicate/minji-go.java
@@ -1,6 +1,3 @@
1
-import java.util.HashSet;
2
-import java.util.Set;
3
-
4
class Solution {
5
public boolean containsDuplicate(int[] nums) {
6
Set<Integer> count = new HashSet<>();
@@ -14,4 +11,4 @@ public boolean containsDuplicate(int[] nums) {
14
11
}
15
12
return answer;
16
13
17
-}
+}
valid-palindrome/minji-go.java
@@ -12,4 +12,4 @@ public boolean isPalindrome(String s) {
0 commit comments