File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/com/fishercoder/solutions Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -340,7 +340,7 @@ Your ideas/fixes/algorithms are more than welcome!
340
340
|252|[ Meeting Rooms] ( https://leetcode.com/problems/meeting-rooms/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/MeetingRooms.java ) | O(nlogn) | O(1) | Easy
341
341
| 251| [ Flatten 2D Vector] ( https://leetcode.com/problems/flatten-2d-vector/ ) | [ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_251.java ) | O(1)| O(m* n) | Medium|
342
342
|250|[ Count Univalue Subtrees] ( https://leetcode.com/problems/count-univalue-subtrees/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_250.java ) | O(n)|O(h) | Medium| DFS
343
- | 249| [ Group Shifted Strings] ( https://leetcode.com/problems/group-shifted-strings/ ) | [ Solution] ( ../master/src/main/java/com/fishercoder/solutions/GroupShiftedStrings .java ) | O(nlogn) | O(n) |
343
+ | 249| [ Group Shifted Strings] ( https://leetcode.com/problems/group-shifted-strings/ ) | [ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_249 .java ) | O(nlogn) | O(n) |
344
344
|248|[ Strobogrammatic Number III] ( https://leetcode.com/problems/strobogrammatic-number-iii/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_248.java ) | O(?) | O(?) | Hard | Recursion, DFS
345
345
|247|[ Strobogrammatic Number II] ( https://leetcode.com/problems/strobogrammatic-number-ii/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/StrobogrammaticNumberII.java ) | O(n^2) | O(n) | Medium | Recursion
346
346
|246|[ Strobogrammatic Number] ( https://leetcode.com/problems/strobogrammatic-number/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/StrobogrammaticNumber.java ) | O(n) | O(1) | Easy
Original file line number Diff line number Diff line change 21
21
]
22
22
23
23
*/
24
- public class GroupShiftedStrings {
24
+ public class _249 {
25
25
26
26
public List <List <String >> groupStrings (String [] strings ) {
27
27
You can’t perform that action at this time.
0 commit comments