https://github.com/luka2220/leetcode
https://github.com/luka2220/leetcode
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/luka2220/leetcode
- Owner: luka2220
- Created: 2025-01-02T17:01:32.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-01-17T22:32:42.000Z (9 months ago)
- Last Synced: 2025-01-17T23:28:06.598Z (9 months ago)
- Language: Java
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Question Log
- **inc**: incomplete solution
- **opt**: optimize the solution
- **done**: complete
- **redo**: redo question| Number | Question | Status | Topics | Language |
| ----------- | -------- | ----------- | -------- | -------- |
| 1570 | [Dot Product of Two Sparse Vectors](https://leetcode.com/problems/dot-product-of-two-sparse-vectors/description/) | redo | Array, Hash Table, Design | Java |
| 110 | [Balanced Binary Tree](https://leetcode.com/problems/balanced-binary-tree/description/) | opt | Tree, DFS, Binary Tree | Java |
| 704 | [Binary Search](https://leetcode.com/problems/binary-search/description/) | done | Array, Binary Search | Java |
| 235 | [Lowest Common Ancestor of a Binary Search Tree](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/description/) | done | Tree, DFS, Binary Search, Binary Tree | Java |
| 141 | [Linked List Cycle](https://leetcode.com/problems/linked-list-cycle/description/) | opt | Hash Table, Linked List, Two Pointer | Java |
| 232 | [Implement Queue using Stacks](https://leetcode.com/problems/implement-queue-using-stacks/description/) | done | Stack, Design, Queue | Java |
| 733 | [Flood Fill](https://leetcode.com/problems/flood-fill/description/) | redo | Array, DFS, BFS, Matrix, Graph | Java |
| 383 | [Ransom Note](https://leetcode.com/problems/ransom-note/description/) | done | HashTable, String, Counting | Java |
| 206 | [Reverse Linked List](https://leetcode.com/problems/reverse-linked-list/description/) | done | LinkedList, Recursion | Java |
| 104 | [Maximum Depth of Binary Tree](https://leetcode.com/problems/maximum-depth-of-binary-tree/description/) | done | Tree, DFS, BFS, Binary-Tree | python |
| 136 | [Single Number](https://leetcode.com/single-number/description/) | done | Array, Bit Manipulation | c++ |
| 409 | [Longest Palindrome](https://leetcode.com/longest-palindrome/description/) | redo | Hash Table, String Greedy | python |
| 543 | [Diameter of Binary Tree](https://leetcode.com/problems/diameter-of-binary-tree/description/) | redo | DFS, Binary Tree | python |
| 252 | [Meeting Rooms](https://leetcode.com/problems/meeting-rooms/description/) | opt | Array, Sorting | python |
| 412 | [Fizz Buzz](https://leetcode.com/problems/fizz-buzz/description/) | done | Math, String, Simulation | java |