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 @@ -206,7 +206,7 @@ Your ideas/fixes/algorithms are more than welcome!
206
206
|393|[ UTF-8 Validation] ( https://leetcode.com/problems/utf-8-validation/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_393.java ) | O(?)|O(?) | Medium| Bit Manipulation
207
207
|392|[ Is Subsequence] ( https://leetcode.com/problems/is-subsequence/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_392.java ) | O(m* n)|O(1) | Medium| Array, String
208
208
| 390| [ Elimination Game] ( https://leetcode.com/problems/elimination-game/ ) | [ Solution] ( ../master/src/main/java/com/fishercoder/solutions/EliminationGame.java ) | O(logn)| O(1) | Medium|
209
- | 389| [ Find the Difference] ( https://leetcode.com/problems/find-the-difference/ ) | [ Solution] ( ../master/src/main/java/com/fishercoder/solutions/FindTheDifference .java ) | O(n)| O(1) | Easy|
209
+ | 389| [ Find the Difference] ( https://leetcode.com/problems/find-the-difference/ ) | [ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_389 .java ) | O(n)| O(1) | Easy|
210
210
|388|[ Longest Absolute File Path] ( https://leetcode.com/problems/longest-absolute-file-path/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/LongestAbsoluteFilePath.java ) | O(n)|O(d) | Medium| Stack
211
211
|387|[ First Unique Character in a String] ( https://leetcode.com/problems/first-unique-character-in-a-string/ ) |[ Solution] ( ../master/src/main/java/com/fishercoder/solutions/_387.java ) | O(n)|O(n) | Easy| HashMap
212
212
| 386| [ Lexicographical Numbers] ( https://leetcode.com/problems/lexicographical-numbers/ ) | [ Solution] ( ../master/src/main/java/com/fishercoder/solutions/LexicographicalNumbers.java ) | O(n)| O(1) | Medium|
Original file line number Diff line number Diff line change 16
16
17
17
Explanation:
18
18
'e' is the letter that was added.*/
19
- public class FindTheDifference {
19
+ public class _389 {
20
20
public char findTheDifference (String s , String t ) {
21
21
int [] counts = new int [128 ];
22
22
char [] schars = s .toCharArray ();
You can’t perform that action at this time.
0 commit comments