Skip to content

Commit 370d578

Browse files
authored
Merge pull request #71 from d2Anubis/master
updated readme
2 parents 6a115b7 + 31fbac4 commit 370d578

File tree

1 file changed

+42
-1
lines changed

1 file changed

+42
-1
lines changed

readme.md

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Repository made with the aim to help people studing for coding interviews. All c
22

33
Contributions are welcome! If you want to contribute, please read [CONTRIBUTING.md](https://github.com/larissalages/code_problems/blob/master/CONTRIBUTING.md) for details on how to get started and submit pull requests to us.
44

5-
# Usefull Links
5+
# Useful Links
66
- [Big O cheat sheet](https://www.bigocheatsheet.com/)
77
- [LeetCode](https://leetcode.com/)
88
- [HackerRank](https://www.hackerrank.com/dashboard)
@@ -14,6 +14,10 @@ Contributions are welcome! If you want to contribute, please read [CONTRIBUTING.
1414
### Python
1515
Code | Test
1616
------------ | -------------
17+
[Heap Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/Heap%20Sort.py) | Missing tests
18+
[Kadane's Algorithm](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/kadanes_algorithm.py) | Missing tests
19+
[Linear Search](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/Linear%20Search%20.py) | Missing tests
20+
[Sieve of Eratoshenes](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/Sieve%20of%20Eratosthenes.py) | Missing tests
1721
[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)
1822
[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)
1923
[Radix](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/python/radix.py) | [Unit Test](https://github.com/larissalages/code_problems/blob/f0353fac71e3b773dbfb12080c01b02baa35ac72/classical_algorithms/python/tests/test_radix.py)
@@ -25,16 +29,53 @@ Code | Test
2529
------------ | -------------
2630
[Merge Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/java/MergeSort.java) | Missing tests
2731
[Quick Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/java/QuickSort.java) | Missing tests
32+
[Bubble Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/java/BubbleSort.java) | Missing tests
2833

2934
### C++
3035
Code | Test
3136
------------ | -------------
37+
[Binary Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/c%2B%2B/binary_tree.cpp) | Missing tests
38+
[Prims Algo](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/c%2B%2B/prims_algo.cpp) | Missing tests
3239
[Selection Sort](https://github.com/kartikeysingh6/code_problems/blob/master/classical_algorithms/c%2B%2B/selectionsort.cpp) | Missing tests
3340
[Insertion Sort](https://github.com/kartikeysingh6/code_problems/blob/master/classical_algorithms/c++/insertionsort.cpp) | Missing tests
3441
[Bubble Sort](https://github.com/kartikeysingh6/code_problems/blob/master/classical_algorithms/c++/bubblesort.cpp) | Missing tests
3542
[Merge Sort](https://github.com/larissalages/code_problems/blob/master/classical_algorithms/c%2B%2B/mergesort.cpp) | Missing tests
3643
[Quick Sort](https://github.com/kartikeysingh6/code_problems/blob/master/classical_algorithms/c++/quicksort.cpp) | Missing tests
3744

45+
#Codeforces
46+
47+
### Round 633
48+
Problem Statement | Solution
49+
------------ | -------------
50+
[A](https://codeforces.com/contest/1339/problem/A) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/2_Round_633_Div_2/A.cpp)
51+
[B](https://codeforces.com/contest/1339/problem/B) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/2_Round_633_Div_2/B.cpp)
52+
[C](https://codeforces.com/contest/1339/problem/C) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/2_Round_633_Div_2/C.cpp)
53+
### Round 634
54+
Problem Statement | Solution
55+
------------ | -------------
56+
[A](https://codeforces.com/contest/1335/problem/A) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/1_Round_634_Div_3/A.cpp)
57+
[B](https://codeforces.com/contest/1335/problem/B) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/1_Round_634_Div_3/B.cpp)
58+
[C](https://codeforces.com/contest/1335/problem/C) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/1_Round_634_Div_3/C.cpp)
59+
[D](https://codeforces.com/contest/1335/problem/D) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/1_Round_634_Div_3/D.cpp)
60+
### Round 635
61+
Problem Statement | Solution
62+
------------ | -------------
63+
[A](https://codeforces.com/contest/1337/problem/A) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/4_Round_635_Div_2/A.cpp)
64+
[B](https://codeforces.com/contest/1337/problem/B) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/4_Round_635_Div_2/B.cpp)
65+
### Round 636
66+
Problem Statement | Solution
67+
------------ | -------------
68+
[A](https://codeforces.com/contest/1343/problem/A) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/5_Round_636_Div_3/A.cpp)
69+
[B](https://codeforces.com/contest/1343/problem/B) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/5_Round_636_Div_3/B.cpp)
70+
[C](https://codeforces.com/contest/1343/problem/C) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/5_Round_636_Div_3/C.cpp)
71+
[D](https://codeforces.com/contest/1343/problem/D) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/5_Round_636_Div_3/D.cpp)
72+
### Round 637
73+
Problem Statement | Solution
74+
------------ | -------------
75+
[A](https://codeforces.com/contest/1341/problem/A) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/6_Round_637_Div_2/A.cpp)
76+
[B](https://codeforces.com/contest/1341/problem/B) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/6_Round_637_Div_2/B.cpp)
77+
[C](https://codeforces.com/contest/1341/problem/C) | [Solution](https://github.com/larissalages/code_problems/blob/master/Codeforces_Contests/6_Round_637_Div_2/C.cpp)
78+
3879
# LeetCode
3980
## Binary Search Trees
4081
Challenge | Solution

0 commit comments

Comments
 (0)