Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upSolve problems recommended by Coach #13
Open
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
oky
from##algorithms
has shared a below list of LeetCode problems. Prioritize these problems and try to write a solutions for them first.Binary tree basics
https://leetcode.com/problems/maximum-depth-of-binary-tree/PR #14https://leetcode.com/problems/binary-tree-paths/PR #16https://leetcode.com/problems/sum-of-root-to-leaf-binary-numbers/PR #17Getting somewhere with binary trees
https://leetcode.com/problems/maximum-depth-of-n-ary-tree/PR #18https://leetcode.com/problems/sort-colors/ (in-place!)PR #22https://leetcode.com/problems/binary-tree-level-order-traversal/PR #23https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/PR #29Combinations / brute force
https://leetcode.com/problems/combinations/PR #25https://leetcode.com/problems/combination-sum/PR #26https://leetcode.com/problems/combination-sum-ii/PR #27https://leetcode.com/problems/letter-combinations-of-a-phone-number/ (challenge)PR #29DFS / BFS
https://leetcode.com/problems/number-of-islands/PR #30https://leetcode.com/problems/network-delay-time/ (solve with dijkstra this time)PR #35https://leetcode.com/problems/flood-fill/description/PR #31Stacks:
https://leetcode.com/problems/valid-parentheses/PR #24https://leetcode.com/problems/evaluate-reverse-polish-notation/PR #38