File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 23
23
python -m pip install mypy pytest-cov -r requirements.txt
24
24
- run : mypy --install-types --non-interactive .
25
25
- name : Run tests
26
- run : pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/ --cov-report=term-missing:skip-covered --cov=. .
26
+ run : pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/validate_solutions.py --cov-report=term-missing:skip-covered --cov=. .
27
27
- if : ${{ success() }}
28
28
run : scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md
Original file line number Diff line number Diff line change 264
264
* [ Sum Of Subset] ( https://github.com/TheAlgorithms/Python/blob/master/dynamic_programming/sum_of_subset.py )
265
265
266
266
## Electronics
267
+ * [ Carrier Concentration] ( https://github.com/TheAlgorithms/Python/blob/master/electronics/carrier_concentration.py )
267
268
* [ Electric Power] ( https://github.com/TheAlgorithms/Python/blob/master/electronics/electric_power.py )
268
269
* [ Ohms Law] ( https://github.com/TheAlgorithms/Python/blob/master/electronics/ohms_law.py )
269
270
346
347
* [ Test Min Spanning Tree Kruskal] ( https://github.com/TheAlgorithms/Python/blob/master/graphs/tests/test_min_spanning_tree_kruskal.py )
347
348
* [ Test Min Spanning Tree Prim] ( https://github.com/TheAlgorithms/Python/blob/master/graphs/tests/test_min_spanning_tree_prim.py )
348
349
350
+ ## Greedy Methods
351
+ * [ Optimal Merge Pattern] ( https://github.com/TheAlgorithms/Python/blob/master/greedy_methods/optimal_merge_pattern.py )
352
+
349
353
## Hashes
350
354
* [ Adler32] ( https://github.com/TheAlgorithms/Python/blob/master/hashes/adler32.py )
351
355
* [ Chaos Machine] ( https://github.com/TheAlgorithms/Python/blob/master/hashes/chaos_machine.py )
436
440
* [ Euclidean Distance] ( https://github.com/TheAlgorithms/Python/blob/master/maths/euclidean_distance.py )
437
441
* [ Euclidean Gcd] ( https://github.com/TheAlgorithms/Python/blob/master/maths/euclidean_gcd.py )
438
442
* [ Euler Method] ( https://github.com/TheAlgorithms/Python/blob/master/maths/euler_method.py )
443
+ * [ Euler Modified] ( https://github.com/TheAlgorithms/Python/blob/master/maths/euler_modified.py )
439
444
* [ Eulers Totient] ( https://github.com/TheAlgorithms/Python/blob/master/maths/eulers_totient.py )
440
445
* [ Extended Euclidean Algorithm] ( https://github.com/TheAlgorithms/Python/blob/master/maths/extended_euclidean_algorithm.py )
441
446
* [ Factorial Iterative] ( https://github.com/TheAlgorithms/Python/blob/master/maths/factorial_iterative.py )
You can’t perform that action at this time.
0 commit comments