Skip to content

Commit a538c9d

Browse files
committed
update readme
1 parent db4aec2 commit a538c9d

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

readme.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,26 @@ Contributions are welcome! If you want to contribute, please read [CONTRIBUTING.
1111

1212

1313
# Classic Algorithms
14+
### Python
1415
Code | Test
1516
------------ | -------------
16-
[Quick Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/quicksort.py) | [Unit Test](https://github.com/larissalages/code_problems/blob/master/tests/test_quick_sort.py)
17-
[Merge Sorte](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/mergesort.py) | [Unit Test](https://github.com/larissalages/code_problems/blob/master/tests/test_merge_sort.py)
17+
[Quick Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/quicksort.py) | [Unit Test](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/tests/test_quick_sort.py)
18+
[Merge Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/mergesort.py) | [Unit Test](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/tests/test_merge_sort.py)
19+
[Radix](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/radix.py) | Missing tests
20+
[Selection Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/selection%20sort.py) | Missing tests
21+
[Binary Search](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/Binary%20search.py) | Missing tests
22+
23+
### Java
24+
Code | Test
25+
------------ | -------------
26+
[Merge Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/java/MergeSort.java) | Missing tests
27+
[Quick Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/java/QuickSort.java) | Missing tests
28+
29+
### C++
30+
Code | Test
31+
------------ | -------------
32+
[Merge Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/c%2B%2B/mergesort.cpp) | Missing tests
33+
1834
# LeetCode
1935
## Binary Search Trees
2036
Challenge | Solution

0 commit comments

Comments
 (0)