File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,10 @@ install:
22
22
- pip3 install pytest-cov
23
23
- pip3 install codecov
24
24
25
- script : pytest --cov=Algorithms/
26
- # - awesome_bot README.md --allow-dupe --allow-redirect
25
+ script :
26
+ # - awesome_bot README.md --allow-dupe --allow-redirect
27
+ - pytest --cov=Algorithms/
28
+
27
29
# # Dynamic Programming Tests
28
30
# - python Algorithm_tests/dynamic_programming_tests/knapsack_tests/knapsack_bottomup_test.py
29
31
# - python Algorithm_tests/dynamic_programming_tests/sequence_alignment/sequence_alignment_test.py
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ Whenever I face an interesting problem I document the algorithm that I learned t
55
55
* :white_check_mark : [ Maintaining Median] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/other/median_maintenance.py ) ** - O(nlog(n))**
56
56
* :small_red_triangle : [ Huffman Algorithm] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/other/Huffman/Huffman.py )
57
57
* :white_check_mark : [ :movie_camera : ] ( https://youtu.be/SmPxC8m0yIY ) [ Interval Scheduling] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/other/interval_scheduling.py ) ** - O(nlog(n))**
58
- * :white_check_mark : [ Binary Search] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/search /binarysearch.py ) ** - O(log(n))**
58
+ * :white_check_mark : [ Binary Search] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/other /binarysearch.py ) ** - O(log(n))**
59
59
60
60
# Sorting algorithms
61
61
* :white_check_mark : [ Bubble sort] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/sorting/bubblesort.py ) ** - O(n<sup >2sup >)**
You can’t perform that action at this time.
0 commit comments