Skip to content

Commit 2b5a6f0

Browse files
authored
Update Solution.kt
1 parent 56c9205 commit 2b5a6f0

File tree

1 file changed

+0
-2
lines changed
  • src/main/kotlin/g0001_0100/s0049_group_anagrams

1 file changed

+0
-2
lines changed

src/main/kotlin/g0001_0100/s0049_group_anagrams/Solution.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ class Solution {
99
if (strs.isEmpty()) {
1010
return emptyList()
1111
}
12-
1312
val hashMap = hashMapOf<String, MutableList<String>>()
14-
1513
for (i in strs.indices) {
1614
val charArray = strs[i].toCharArray()
1715
charArray.sort()

0 commit comments

Comments
 (0)