File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
- package _20160827_2nd_contest ;
1
+ package easy ;
2
2
3
3
public class FindTheDifference {
4
4
public char findTheDifference (String s , String t ) {
Original file line number Diff line number Diff line change 1
- package _20160827_2nd_contest ;
1
+ package medium ;
2
2
3
3
import java .util .ArrayList ;
4
4
import java .util .List ;
Original file line number Diff line number Diff line change 2
2
| # | Title | Solutions | Time | Space | Difficulty | Tag | Notes
3
3
|-----|----------------|---------------|---------------|---------------|-------------|--------------|-----
4
4
| 415| [ Add Strings] ( https://leetcode.com/problems/add-strings/ ) | [ Solution] ( ../../blob/master/EASY/src/easy/AddStrings.java ) | O(n)| O(1) | Easy|
5
+ | 390| [ Elimination Game] ( https://leetcode.com/problems/elimination-game/ ) | [ Solution] ( ../../blob/master/MEDIUM/src/medium/EliminationGame.java ) | O(logn)| O(1) | Medium|
6
+ | 389| [ Find the Difference] ( https://leetcode.com/problems/find-the-difference/ ) | [ Solution] ( ../../blob/master/EASY/src/easy/FindTheDifference.java ) | O(n)| O(1) | Easy|
5
7
|388|[ Longest Absolute File Path] ( https://leetcode.com/problems/longest-absolute-file-path/ ) |[ Solution] ( ../../blob/master/MEDIUM/src/medium/LongestAbsoluteFilePath.java ) | O(n)|O(d) | Medium| Stack
6
8
|387|[ First Unique Character in a String] ( https://leetcode.com/problems/first-unique-character-in-a-string/ ) |[ Solution] ( ../../blob/master/EASY/src/easy/FirstUniqueCharacterinaString.java ) | O(n)|O(n) | Easy| HashMap
7
9
| 386| [ Lexicographical Numbers] ( https://leetcode.com/problems/lexicographical-numbers/ ) | [ Solution] ( ../../blob/master/MEDIUM/src/medium/LexicographicalNumbers.java ) | O(n)| O(1) | Medium|
You can’t perform that action at this time.
0 commit comments