Skip to content

Commit bb9673f

Browse files
authored
Update README.md
1 parent b7de4cb commit bb9673f

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

README.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
### UPDATE: [Coding Assessment problems + solutions](https://www.algoexpert.io/assessments) are now available here! Check the section below to find those.
2+
13
# :star: algo-expert
24

35
![AlgoExpert cover image](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Images/algo-expert-cover.png?raw=true)
@@ -27,14 +29,20 @@ The solutions are provided in Python.
2729
**Questions:**
2830
You can get the questions here: [AlgoExpert Questions](https://github.com/das-jishu/algoexpert-data-structures-algorithms/tree/master/Questions)
2931
<br/>
30-
The questions are not ordered so you might need to search for a bit.
32+
The questions are not ordered so you might need to search for a bit. You can search using the name of the problem to find it quickly. Some questions are too long to fit in a single image. So, they have been divided into parts. Do keep an eye out for those.
3133
<br/>
3234
<a href="#star-algo-expert">Go to Top</a>
3335

3436
#
3537

3638
### ⚡ LIST OF PROBLEMS
3739

40+
**Assessment problems + solutions** have also been added to the list of problems. These are timed assessment questions present on [AlgoExpert](https://www.algoexpert.io/assessments) to check one's problem solving ability in a well defined time constraint just as you would expect to find in an interview setting. It is recommended that you do practice these questions by setting a time limit for yourself to assess your progress. Standard time per question in an interview setting is **45 minutes**. You can find the problem statements in [here](https://github.com/das-jishu/algoexpert-data-structures-algorithms/tree/master/Questions). Search using the name of the problem to find it quickly. Check the key below to find the assessment problems.
41+
42+
⭐ : Coding Interview Problems
43+
<br/>
44+
🗡️ : Coding Assessment Problems
45+
3846
#### Difficulty chart:
3947
🟩 : Easy
4048
<br/>
@@ -46,7 +54,7 @@ The questions are not ordered so you might need to search for a bit.
4654
<br/>
4755

4856
| | Problem Statement | Difficulty | Solution |
49-
| ------ | ----------------- | :--------: | -------- |
57+
| :------: | ----------------- | :--------: | -------- |
5058
| :star: | Two Number Sum | 🟩 | [two-number-sum.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/twoNumberSum.py) |
5159
| :star: | Validate Subsequence | 🟩 | [validate-subsequence.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/validate-subsequence.py) |
5260
| :star: | Tournament Winner | 🟩 | [tournament-winner.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/tournament-winner.py) |
@@ -197,6 +205,24 @@ The questions are not ordered so you might need to search for a bit.
197205
| :star: | Merge Sort | :black_large_square: | [merge-sort.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/merge-sort.py) |
198206
| :star: | Count Inversions | :black_large_square: | [count-inversions.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/count-inversions.py) || :star: | Smallest Substring Containing | :black_large_square: | [smallest-substring-containing.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/smallest-substring-containing.py) |
199207
| :star: | Longest Balanced Substring | :black_large_square: | [longest-balanced-substring.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/longest-balanced-substring.py) |
208+
| | **ASSESSMENT PROBLEMS** | | |
209+
| 🗡️ | Glob Matching | 🟥 | [glob-matching.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/glob-matching.py) |
210+
| 🗡️ | Inverted Bisection | 🟥 | [inverted-bisection.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/inverted-bisection.py) |
211+
| 🗡️ | Special Strings | 🟥 | [special-strings.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/special-strings.py) |
212+
| 🗡️ | Longest Streak Of Adjacent Ones | :blue_square: | [longest-streak.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/longest-streak-of-adjacent-ones.py) |
213+
| 🗡️ | Degrees Of Separation | 🟦 | [degrees-of-separation.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/degrees-of-separation.py) |
214+
| 🗡️ | Max Subsequence Dot Product || [max-dot-product.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/max-subsequence-dot-product.py) |
215+
| 🗡️ | Largest BST Size | 🟥 | [largest-bst-size.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/largest-bst-size.py) |
216+
| 🗡️ | Spin Rings | 🟦 | [spin-rings.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/spin-rings.py) |
217+
| 🗡️ | Words In Phone Number | 🟥 | [words-phone-number.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/words-in-phone-number.py) |
218+
| 🗡️ | Balance Index | 🟦 | [balance-index.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/balance-index.py) |
219+
| 🗡️ | Build Failures | 🟥 | [build-failures.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/build-failures.py) |
220+
| 🗡️ | Subtrees Within Range | 🟦 | [subtrees-within-range.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/subtrees-within-range.py) |
221+
| 🗡️ | Repeated Matrix Values | 🟦 | [repeated-matrix-values.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/repeated-matrix-values.py) |
222+
| 🗡️ | Reverse Alternating K Nodes || [reverse-k-nodes.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/reverse-alternating-k-nodes.py) |
223+
| 🗡️ | Count Contained Permutations || [count-contained-permutations.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/count-contained-permutations.py) |
224+
| 🗡️ | Longest Increasing Matrix Path | 🟥 | [longest-increasing-matrix-path.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Assessments/longest-increasing-matrix-path.py) |
225+
200226

201227

202228
<a href="#star-algo-expert">Go to Top</a>

0 commit comments

Comments
 (0)