File tree Expand file tree Collapse file tree 4 files changed +14
-383
lines changed
Algorithm_tests/dynamic_programming_tests/knapsack_tests
Algorithms/machine_learning/neural_network Expand file tree Collapse file tree 4 files changed +14
-383
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ before_install:
11
11
12
12
# before_install:
13
13
# - cd Algorithm_tests/sorting_tests
14
-
15
14
# Install awesome_bot for README.md broken link checking
15
+
16
16
before_script :
17
17
- gem install awesome_bot
18
18
Original file line number Diff line number Diff line change
1
+ import sys
2
+ import unittest
3
+
4
+
5
+ # For importing from different folders
6
+ # OBS: This is supposed to be done with automated testing, hence relative to folder we want to import from
7
+ # sys.path.append('Algorithms/cryptology/ceasar_shifting_cipher')
8
+
9
+ # If run from local:
10
+ #sys.path.append('../../Algorithms/dynamic_programming/knapsack/knapsack_bottomup')
11
+
12
+
13
+
1
14
# with open('p01_c.txt') as f_capacity:
2
15
# capacity = int(f_capacity.readline())
3
16
#
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -49,9 +49,6 @@ Whenever I face an interesting problem I document the algorithm that I learned t
49
49
* [ Bisection Method] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/numerical_methods/bisection.py )
50
50
* [ (simple) Fixpoint iteration] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/numerical_methods/fixpoint.py )
51
51
52
- # Machine Learning
53
- * [ Neural Network from scratch] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/machine_learning/neural_network/Neural%20Network%20from%20scratch.ipynb )
54
-
55
52
# Other
56
53
* [ Maintaining Median] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/other/median_maintenance.py )
57
54
* [ Huffman Algorithm] ( https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/other/Huffman/Huffman.py )
You can’t perform that action at this time.
0 commit comments