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 2a28c66 commit b2c99a1Copy full SHA for b2c99a1
โvalid-anagram/Yjason-K.tsโ
@@ -26,6 +26,7 @@ function isAnagram(s: string, t: string): boolean {
26
// t ๋ฌธ์์ด์ ๋ํ ์ํ๋ฒณ ์ฌ์ ์์ฑ
27
for (const char in t) {
28
vocabT = vocabT[char] ? vocabT[char] + 1 : 1;
29
+ }
30
31
32
// ๋ ๋ฌธ์์ด ์ฌ์ ์ ๋น๊ตํ๋ฉฐ count ๊ฐ ์ผ์น ํ์ง ์์ ๊ฒฝ์ฐ false ๋ฐํ
0 commit comments