@@ -2,7 +2,7 @@ Repository made with the aim to help people studing for coding interviews. All c
2
2
3
3
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.
4
4
5
- # Usefull Links
5
+ # Useful Links
6
6
- [ Big O cheat sheet] ( https://www.bigocheatsheet.com/ )
7
7
- [ LeetCode] ( https://leetcode.com/ )
8
8
- [ HackerRank] ( https://www.hackerrank.com/dashboard )
@@ -14,6 +14,10 @@ Contributions are welcome! If you want to contribute, please read [CONTRIBUTING.
14
14
### Python
15
15
Code | Test
16
16
------------ | -------------
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
17
21
[ 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
22
[ 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
23
[ 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
25
29
------------ | -------------
26
30
[ Merge Sort] ( https://github.com/larissalages/code_problems/blob/master/classical_algorithms/java/MergeSort.java ) | Missing tests
27
31
[ 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
28
33
29
34
### C++
30
35
Code | Test
31
36
------------ | -------------
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
32
39
[ Selection Sort] ( https://github.com/kartikeysingh6/code_problems/blob/master/classical_algorithms/c%2B%2B/selectionsort.cpp ) | Missing tests
33
40
[ Insertion Sort] ( https://github.com/kartikeysingh6/code_problems/blob/master/classical_algorithms/c++/insertionsort.cpp ) | Missing tests
34
41
[ Bubble Sort] ( https://github.com/kartikeysingh6/code_problems/blob/master/classical_algorithms/c++/bubblesort.cpp ) | Missing tests
35
42
[ Merge Sort] ( https://github.com/larissalages/code_problems/blob/master/classical_algorithms/c%2B%2B/mergesort.cpp ) | Missing tests
36
43
[ Quick Sort] ( https://github.com/kartikeysingh6/code_problems/blob/master/classical_algorithms/c++/quicksort.cpp ) | Missing tests
37
44
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
+
38
79
# LeetCode
39
80
## Binary Search Trees
40
81
Challenge | Solution
0 commit comments