https://github.com/danielbas33/algoexpert
My solutions to algoExpert.io coding questions
https://github.com/danielbas33/algoexpert
algorithms data-structures
Last synced: 2 months ago
JSON representation
My solutions to algoExpert.io coding questions
- Host: GitHub
- URL: https://github.com/danielbas33/algoexpert
- Owner: DanielBas33
- Created: 2022-04-27T13:36:14.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-10T14:21:34.000Z (almost 4 years ago)
- Last Synced: 2024-01-02T18:57:11.073Z (about 2 years ago)
- Topics: algorithms, data-structures
- Homepage:
- Size: 63.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AlgoExpert
All of my learning from [algoExpert.io](https://algoexpert.io). Including my answers to the coding questions and summaries from the data structures crash curse.
## Coding Questions
These questions are grouped by Difficulty: [Easy](#easy), [Medium](#medium), [Hard](#hard) and [Very Hard](#very-hard)
### Easy:
| Question | Completed | Uploaded to Github |
|:----------------------------------:|:---------:|:------------------:|
| [Two Number Sum](https://github.com/DanielBas33/algoExpert/blob/main/Easy/TwoNumberSum.md) | 🟢 | 🔵 |
| [Validate Subsequence](https://github.com/DanielBas33/algoExpert/blob/main/Easy/ValidateSubsequence.md) | 🟢 | 🔵 |
| [Sorted Squared Array](https://github.com/DanielBas33/algoExpert/blob/main/Easy/SortedSquaredArray.md) | 🟢 | 🔵 |
| [Tournament Winner](https://github.com/DanielBas33/algoExpert/blob/main/Easy/TournamentWinner.md) | 🟢 | 🔵 |
| [Non-Constructible Change](https://github.com/DanielBas33/algoExpert/blob/main/Easy/Non-ConstructubleChange.md) | 🟢 | 🔵 |
| [Closest Value In BST](https://github.com/DanielBas33/algoExpert/blob/main/Easy/ClosestValueBST.md) | 🟢 | 🔵 |
| [Branch Sums](https://github.com/DanielBas33/algoExpert/blob/main/Easy/BranchSums.md) | 🟢 | 🔵 |
| [Node Depths](https://github.com/DanielBas33/algoExpert/blob/main/Easy/NodeDepths.md) | 🟢 | 🔵 |
| [Depth-first Search](https://github.com/DanielBas33/algoExpert/blob/main/Easy/Depth-FirstSearch.md) | 🟢 | 🔵 |
| [Minimum Waiting Time](https://github.com/DanielBas33/algoExpert/blob/main/Easy/MinimumWaitingTime.md) | 🟢 | 🔵 |
| [Class Photos](https://github.com/DanielBas33/algoExpert/blob/main/Easy/ClassPhotos.md) | 🟢 | 🔵 |
| [Tandem Bicycle](https://github.com/DanielBas33/algoExpert/blob/main/Easy/TandemBicycle.md) | 🟢 | 🔵 |
| [Remove Duplicates From Linked List](https://github.com/DanielBas33/algoExpert/blob/main/Easy/RemoveDuplicatesLinkedList.md) | 🟢 | 🔵 |
| [Nth Fibonacci](https://github.com/DanielBas33/algoExpert/blob/main/Easy/NthFibonacci.md) | 🟢 | 🔵 |
| [Product Sum](https://github.com/DanielBas33/algoExpert/blob/main/Easy/ProductSum.md) | 🟢 | 🔵 |
| [Binary Search](https://github.com/DanielBas33/algoExpert/blob/main/Easy/BinarySearch.md) | 🟢 | 🔵 |
| [Find Three Largest Numbers](https://github.com/DanielBas33/algoExpert/blob/main/Easy/FindThreeLargestNumbers.md) | 🟢 | 🔵 |
| [Bubble Sort](https://github.com/DanielBas33/algoExpert/blob/main/Easy/BubbleSort.md) | 🟢 | 🔵 |
| [Insertion Sort](https://github.com/DanielBas33/algoExpert/blob/main/Easy/InsertionSort.md) | 🟢 | 🔵 |
| [Selection Sort](https://github.com/DanielBas33/algoExpert/blob/main/Easy/SelectionSort.md) | 🟢 | 🔵 |
| [Palindrome Check](https://github.com/DanielBas33/algoExpert/blob/main/Easy/Palindrome.md) | 🟢 | 🔵 |
| [Caesar Cipher Encryptor](https://github.com/DanielBas33/algoExpert/blob/main/Easy/CaesarCipherEncryptor.md) | 🟢 | 🔵 |
| [Run-Length Encoding](https://github.com/DanielBas33/algoExpert/blob/main/Easy/RunLengthEncoding.md) | 🟢 | 🔵 |
| [Generate Document](https://github.com/DanielBas33/algoExpert/blob/main/Easy/GenerateDocument.md) | 🟢 | 🔵 |
| [First Non-Repeating Character](https://github.com/DanielBas33/algoExpert/blob/main/Easy/FirstNonRepeatingCharacter.md) | 🟢 | 🔵 |
### Medium:
| Question | Completed | Uploaded to Github |
|:----------------------------------:|:---------:|:------------------:|
| [Three Number Sum](https://github.com/DanielBas33/algoExpert/blob/main/Medium/ThreeNumSum.md) | 🟢 | 🔵 |
### Hard:
| Question | Completed | Uploaded to Github |
|:----------------------------------:|:---------:|:------------------:|
### Very Hard:
| Question | Completed | Uploaded to Github |
|:----------------------------------:|:---------:|:------------------:|
## Data structures
- [Complexity analysis, Memory and Big O Notation](https://github.com/DanielBas33/algoExpert/blob/main/Data%20structures/ComplexityAnalysisMemoryBigO.md)