Skip to content

Commit 9586a6a

Browse files
NumberPiOsogithub-actions
and
github-actions
authored
Change comments for improved consistency (TheAlgorithms#5223)
* Change comments for improved consistency https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md#L56 https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md#L80 https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md#L87 * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent abaa0d7 commit 9586a6a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Algorithms in this repo should not be how-to examples for existing Python packag
5353
Use [pre-commit](https://pre-commit.com/#installation) to automatically format your code to match our coding style:
5454

5555
```bash
56-
python3 -m pip install pre-commit # required only once
56+
python3 -m pip install pre-commit # only required the first time
5757
pre-commit install
5858
```
5959
That's it! The plugin will run every time you commit any changes. If there are any errors found during the run, fix them and commit those changes. You can even run the plugin manually on all files:

DIRECTORY.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@
274274
* [Test Send File](https://github.com/TheAlgorithms/Python/blob/master/file_transfer/tests/test_send_file.py)
275275

276276
## Fractals
277+
* [Julia Sets](https://github.com/TheAlgorithms/Python/blob/master/fractals/julia_sets.py)
277278
* [Koch Snowflake](https://github.com/TheAlgorithms/Python/blob/master/fractals/koch_snowflake.py)
278279
* [Mandelbrot](https://github.com/TheAlgorithms/Python/blob/master/fractals/mandelbrot.py)
279280
* [Sierpinski Triangle](https://github.com/TheAlgorithms/Python/blob/master/fractals/sierpinski_triangle.py)
@@ -424,10 +425,12 @@
424425
* [Binomial Distribution](https://github.com/TheAlgorithms/Python/blob/master/maths/binomial_distribution.py)
425426
* [Bisection](https://github.com/TheAlgorithms/Python/blob/master/maths/bisection.py)
426427
* [Ceil](https://github.com/TheAlgorithms/Python/blob/master/maths/ceil.py)
428+
* [Check Polygon](https://github.com/TheAlgorithms/Python/blob/master/maths/check_polygon.py)
427429
* [Chudnovsky Algorithm](https://github.com/TheAlgorithms/Python/blob/master/maths/chudnovsky_algorithm.py)
428430
* [Collatz Sequence](https://github.com/TheAlgorithms/Python/blob/master/maths/collatz_sequence.py)
429431
* [Combinations](https://github.com/TheAlgorithms/Python/blob/master/maths/combinations.py)
430432
* [Decimal Isolate](https://github.com/TheAlgorithms/Python/blob/master/maths/decimal_isolate.py)
433+
* [Double Factorial Iterative](https://github.com/TheAlgorithms/Python/blob/master/maths/double_factorial_iterative.py)
431434
* [Double Factorial Recursive](https://github.com/TheAlgorithms/Python/blob/master/maths/double_factorial_recursive.py)
432435
* [Entropy](https://github.com/TheAlgorithms/Python/blob/master/maths/entropy.py)
433436
* [Euclidean Distance](https://github.com/TheAlgorithms/Python/blob/master/maths/euclidean_distance.py)
@@ -511,6 +514,7 @@
511514
* [Sum Of Arithmetic Series](https://github.com/TheAlgorithms/Python/blob/master/maths/sum_of_arithmetic_series.py)
512515
* [Sum Of Digits](https://github.com/TheAlgorithms/Python/blob/master/maths/sum_of_digits.py)
513516
* [Sum Of Geometric Progression](https://github.com/TheAlgorithms/Python/blob/master/maths/sum_of_geometric_progression.py)
517+
* [Sylvester Sequence](https://github.com/TheAlgorithms/Python/blob/master/maths/sylvester_sequence.py)
514518
* [Test Prime Check](https://github.com/TheAlgorithms/Python/blob/master/maths/test_prime_check.py)
515519
* [Trapezoidal Rule](https://github.com/TheAlgorithms/Python/blob/master/maths/trapezoidal_rule.py)
516520
* [Triplet Sum](https://github.com/TheAlgorithms/Python/blob/master/maths/triplet_sum.py)
@@ -928,7 +932,6 @@
928932
* [Reverse Letters](https://github.com/TheAlgorithms/Python/blob/master/strings/reverse_letters.py)
929933
* [Reverse Words](https://github.com/TheAlgorithms/Python/blob/master/strings/reverse_words.py)
930934
* [Split](https://github.com/TheAlgorithms/Python/blob/master/strings/split.py)
931-
* [Swap Case](https://github.com/TheAlgorithms/Python/blob/master/strings/swap_case.py)
932935
* [Upper](https://github.com/TheAlgorithms/Python/blob/master/strings/upper.py)
933936
* [Word Occurrence](https://github.com/TheAlgorithms/Python/blob/master/strings/word_occurrence.py)
934937
* [Word Patterns](https://github.com/TheAlgorithms/Python/blob/master/strings/word_patterns.py)

0 commit comments

Comments
 (0)