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 402d5c0 commit ac9523bCopy full SHA for ac9523b
valid-anagram/donghyeon95.java
@@ -2,6 +2,11 @@
2
import java.util.HashSet;
3
import java.util.Map;
4
5
+/*
6
+ map에 넣고 빼는 시간이 O(n)이라고는 하나, 시간이 걸린다.
7
+ 반복문으로 처리할 수 있는 방법이 없을까?
8
+*/
9
+
10
class Solution {
11
public boolean isAnagram(String s, String t) {
12
boolean result = false;
0 commit comments