|
1 | 1 | #fishercoderLeetcode
|
2 |
| -| # | Title| Solutions| Time | Space| Difficulty | Tag | Notes |
3 |
| -|-----|--------------------------|---------------------|-------|--------|------------|-----|------ |
| 2 | +| # | Title|Solutions| Time| Space| Difficulty| Tag | Notes |
| 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 | 5 | |350|[Intersection of Two Arrays II](https://leetcode.com/problems/intersection-of-two-arrays-ii/)|[Solution](../../blob/master/EASY/src/easy/IntersectionOfTwoArraysII.java)| O(m+n)|O((m+n)) could be optimized | Easy| HashMap, Binary Search
|
6 | 6 | |349|[Intersection of Two Arrays](https://leetcode.com/problems/intersection-of-two-arrays/)|[Solution](../../blob/master/EASY/src/easy/IntersectionOfTwoArrays.java)| O(m+n)|O(min(m,n)) | Easy| Two Pointers, Binary Search
|
|