Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vanessaaleung/leetcodeedgecases
https://github.com/vanessaaleung/leetcodeedgecases
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vanessaaleung/leetcodeedgecases
- Owner: vanessaaleung
- Created: 2022-07-24T03:59:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-01T19:11:40.000Z (about 2 years ago)
- Last Synced: 2023-03-07T16:20:45.149Z (over 1 year ago)
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# leetCodeEdgeCases
- [Arrays](#arrays)
- [LinkedList](#linkedlist)
- [String](#string)
- [BinaryTree](#binarytree)## Arrays
- All negative/All postive arrays: [977. Squares of a Sorted Array](https://leetcode.com/problems/squares-of-a-sorted-array/)
- Rotate the array by steps > the length of the array: [189. Rotate Array](https://leetcode.com/problems/rotate-array/)##
## LinkedList
- Remove the last element of the list: [19. Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/)
- Only one element in the list: [19. Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/)## String
- No repeated characters in the string at all: [3. Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/)## BinaryTree
- One of the trees is empty: [617. Merge Two Binary Trees](https://leetcode.com/problems/merge-two-binary-trees/)## Graph
- [207. Course Schedule](https://leetcode.com/problems/course-schedule/): one course can have multiple pre-reqs