Skip to content

Commit a94e68b

Browse files
updated readme and travis file
1 parent cade535 commit a94e68b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>2sup>)**

0 commit comments

Comments
 (0)