https://github.com/othonalberto/hackerrank_ctci
Soluções para os problemas do "Cracking The Coding Interview" do Hacker Rank.
https://github.com/othonalberto/hackerrank_ctci
Last synced: about 1 year ago
JSON representation
Soluções para os problemas do "Cracking The Coding Interview" do Hacker Rank.
- Host: GitHub
- URL: https://github.com/othonalberto/hackerrank_ctci
- Owner: othonalberto
- Created: 2018-02-09T01:54:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-09T02:02:26.000Z (over 8 years ago)
- Last Synced: 2025-01-30T23:42:15.566Z (over 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Data Structures
- [x] Arrays: Left Rotation
- [x] Strings: Making Anagrams
- [x] Hash Tables: Ransom Note
- [x] Linked Lists: Detect a Cycle
- [x] Stacks: Balanced Brackets
- [x] Queues: A Tale of Two Stacks
- [x] Trees: Is This a Binary Search Tree?
- [ ] Heaps: Find the Running Median
- [ ] Tries: Contacts
### Algorithms
- [ ] Sorting: Bubble Sort
- [ ] Sorting: Comparator
- [ ] Merge Sort: Counting Inversions
- [ ] Hash Tables: Ice Cream Parlors
- [ ] DFS: Connected Cell in a Grid
- [ ] BFS: Shortest Reach in a Graph
### Techniques/Concepts
- [ ] Time Complexity: Primality
- [ ] Recursion: Fibonacci Numbers
- [ ] Recursion: Davis' Staircase
- [ ] DP: Coin Change
- [ ] Bit Manipulation: Lonely Integer