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:
2222 - pip3 install pytest-cov
2323 - pip3 install codecov
2424
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+
2729 # # Dynamic Programming Tests
2830 # - python Algorithm_tests/dynamic_programming_tests/knapsack_tests/knapsack_bottomup_test.py
2931 # - 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
5555* :white_check_mark : [ Maintaining Median] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/other/median_maintenance.py ) ** - O(nlog(n))**
5656* :small_red_triangle : [ Huffman Algorithm] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/other/Huffman/Huffman.py )
5757* :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))**
5959
6060# Sorting algorithms
6161* :white_check_mark : [ Bubble sort] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/sorting/bubblesort.py ) ** - O(n<sup >2</sup >)**
You can’t perform that action at this time.
0 commit comments