Skip to content

Commit bef74d0

Browse files
cclausspoyea
authored andcommitted
* Fix typo * updating DIRECTORY.md
1 parent 5c7d778 commit bef74d0

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
* [ ] All function parameters and return values are annotated with Python [type hints](https://docs.python.org/3/library/typing.html).
1818
* [ ] All functions have [doctests](https://docs.python.org/3/library/doctest.html) that pass the automated testing.
1919
* [ ] All new algorithms have a URL in its comments that points to Wikipedia or other similar explanation.
20-
* [ ] If this issues resolves an open issue then the commit message contains `Fixes: #{$ISSUE_NO}` for auto cleanup.
20+
* [ ] If this pull request resolves one or more open issues then the commit message contains `Fixes: #{$ISSUE_NO}`.

DIRECTORY.md

+8
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@
190190
## Fuzzy Logic
191191
* [Fuzzy Operations](https://github.com/TheAlgorithms/Python/blob/master/fuzzy_logic/fuzzy_operations.py)
192192

193+
## Graphics
194+
* [Bezier Curve](https://github.com/TheAlgorithms/Python/blob/master/graphics/bezier_curve.py)
195+
193196
## Graphs
194197
* [A Star](https://github.com/TheAlgorithms/Python/blob/master/graphs/a_star.py)
195198
* [Articulation Points](https://github.com/TheAlgorithms/Python/blob/master/graphs/articulation_points.py)
@@ -258,6 +261,8 @@
258261
* [Abs](https://github.com/TheAlgorithms/Python/blob/master/maths/abs.py)
259262
* [Abs Max](https://github.com/TheAlgorithms/Python/blob/master/maths/abs_max.py)
260263
* [Abs Min](https://github.com/TheAlgorithms/Python/blob/master/maths/abs_min.py)
264+
* [Area Under Curve](https://github.com/TheAlgorithms/Python/blob/master/maths/area_under_curve.py)
265+
* [Armstrong Numbers](https://github.com/TheAlgorithms/Python/blob/master/maths/armstrong_numbers.py)
261266
* [Average Mean](https://github.com/TheAlgorithms/Python/blob/master/maths/average_mean.py)
262267
* [Average Median](https://github.com/TheAlgorithms/Python/blob/master/maths/average_median.py)
263268
* [Average Mode](https://github.com/TheAlgorithms/Python/blob/master/maths/average_mode.py)
@@ -271,6 +276,7 @@
271276
* [Eulers Totient](https://github.com/TheAlgorithms/Python/blob/master/maths/eulers_totient.py)
272277
* [Explicit Euler](https://github.com/TheAlgorithms/Python/blob/master/maths/explicit_euler.py)
273278
* [Extended Euclidean Algorithm](https://github.com/TheAlgorithms/Python/blob/master/maths/extended_euclidean_algorithm.py)
279+
* [Factorial Iterative](https://github.com/TheAlgorithms/Python/blob/master/maths/factorial_iterative.py)
274280
* [Factorial Python](https://github.com/TheAlgorithms/Python/blob/master/maths/factorial_python.py)
275281
* [Factorial Recursive](https://github.com/TheAlgorithms/Python/blob/master/maths/factorial_recursive.py)
276282
* [Factors](https://github.com/TheAlgorithms/Python/blob/master/maths/factors.py)
@@ -292,13 +298,15 @@
292298
* [Kth Lexicographic Permutation](https://github.com/TheAlgorithms/Python/blob/master/maths/kth_lexicographic_permutation.py)
293299
* [Largest Of Very Large Numbers](https://github.com/TheAlgorithms/Python/blob/master/maths/largest_of_very_large_numbers.py)
294300
* [Least Common Multiple](https://github.com/TheAlgorithms/Python/blob/master/maths/least_common_multiple.py)
301+
* [Line Length](https://github.com/TheAlgorithms/Python/blob/master/maths/line_length.py)
295302
* [Lucas Lehmer Primality Test](https://github.com/TheAlgorithms/Python/blob/master/maths/lucas_lehmer_primality_test.py)
296303
* [Lucas Series](https://github.com/TheAlgorithms/Python/blob/master/maths/lucas_series.py)
297304
* [Matrix Exponentiation](https://github.com/TheAlgorithms/Python/blob/master/maths/matrix_exponentiation.py)
298305
* [Miller Rabin](https://github.com/TheAlgorithms/Python/blob/master/maths/miller_rabin.py)
299306
* [Mobius Function](https://github.com/TheAlgorithms/Python/blob/master/maths/mobius_function.py)
300307
* [Modular Exponential](https://github.com/TheAlgorithms/Python/blob/master/maths/modular_exponential.py)
301308
* [Newton Raphson](https://github.com/TheAlgorithms/Python/blob/master/maths/newton_raphson.py)
309+
* [Numerical Integration](https://github.com/TheAlgorithms/Python/blob/master/maths/numerical_integration.py)
302310
* [Perfect Square](https://github.com/TheAlgorithms/Python/blob/master/maths/perfect_square.py)
303311
* [Polynomial Evaluation](https://github.com/TheAlgorithms/Python/blob/master/maths/polynomial_evaluation.py)
304312
* [Prime Check](https://github.com/TheAlgorithms/Python/blob/master/maths/prime_check.py)

0 commit comments

Comments
 (0)