https://github.com/th92rodr/coderbyte-challenges
Coding challenges and technical interview preps from coderbyte.com
https://github.com/th92rodr/coderbyte-challenges
algorithms coderbyte
Last synced: 10 months ago
JSON representation
Coding challenges and technical interview preps from coderbyte.com
- Host: GitHub
- URL: https://github.com/th92rodr/coderbyte-challenges
- Owner: th92rodr
- Created: 2019-12-19T01:24:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-26T18:12:15.000Z (over 5 years ago)
- Last Synced: 2025-01-21T23:13:14.098Z (12 months ago)
- Topics: algorithms, coderbyte
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Coding challenges and technical interview preps
## Google Interview Prep
- Find the middle element of a linked list
- Two sum problem
Determine if two numbers in an array sum to a specific value
- Print all subsets (power set) of a given set
Printing all possible subsets of a given set
- Subset sum problem
- Determine if a tree is a subtree of a larger binary tree
- Generate all balanced bracket combinations
- Find all string combinations of only 0, 1 and ?
- Insert an interval into a list of sorted disjoint intervals
- Implement a queue using two stacks
- Counting steps using recursion
- Stock maximum profit
- Quickly calculate the cube root of a number