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 @@ -383,7 +383,7 @@ Your ideas/fixes/algorithms are more than welcome!
383
383
|208|[ Implement Trie] ( https://leetcode.com/problems/implement-trie-prefix-tree/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_208.java ) | O(n)|O(1) | Medium| Trie
384
384
| 207| [ Course Schedule] ( https://leetcode.com/problems/course-schedule/ ) | [ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_207.java ) | O(?)| O(?) | Medium|
385
385
|206|[ Reverse Linked List] ( https://leetcode.com/problems/reverse-linked-list/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_206.java ) | O(n)|O(1) | Easy | Linked List
386
- |205|[ Isomorphic Strings] ( https://leetcode.com/problems/isomorphic-strings/ ) |[ Solution] ( ../../blmaster/src/94fishercoder/algorithms/IsomorphicStrings .java ) | O(n)|O(1) | Easy
386
+ |205|[ Isomorphic Strings] ( https://leetcode.com/problems/isomorphic-strings/ ) |[ Solution] ( ../../blmaster/src/94fishercoder/algorithms/_205 .java ) | O(n)|O(1) | Easy
387
387
|204|[ Count Primes] ( https://leetcode.com/problems/count-primes/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_204.java ) | O(sqrt(n))|O(n) | Easy
388
388
|202|[ Happy Number] ( https://leetcode.com/problems/happy-number/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_202.java ) | O(k)|O(k) | Easy
389
389
|201|[ Bitwise AND of Numbers Range] ( https://leetcode.com/problems/bitwise-and-of-numbers-range/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_201.java ) | O(min(m,n))|O(1) | Medium | Bit Manipulation
Original file line number Diff line number Diff line change 17
17
18
18
Note:
19
19
You may assume both s and t have the same length.*/
20
- public class IsomorphicStrings {
20
+ public class _205 {
21
21
/**space should be O(1) since it only has alphabetic letters which are capped at 52.*/
22
22
23
23
public boolean isIsomorphic (String s , String t ) {
You can’t perform that action at this time.
0 commit comments