Python/dynamic_programming
Caeden 4d0c830d2c
Add flake8 pluin flake8 bugbear to pre-commit (#7132)
* ci(pre-commit): Add ``flake8-builtins`` additional dependency to ``pre-commit`` (#7104)

* refactor: Fix ``flake8-builtins`` (#7104)

* fix(lru_cache): Fix naming conventions in docstrings (#7104)

* ci(pre-commit): Order additional dependencies alphabetically (#7104)

* fix(lfu_cache): Correct function name in docstring (#7104)

* Update strings/snake_case_to_camel_pascal_case.py

Co-authored-by: Christian Clauss <cclauss@me.com>

* Update data_structures/stacks/next_greater_element.py

Co-authored-by: Christian Clauss <cclauss@me.com>

* Update digital_image_processing/index_calculation.py

Co-authored-by: Christian Clauss <cclauss@me.com>

* Update graphs/prim.py

Co-authored-by: Christian Clauss <cclauss@me.com>

* Update hashes/djb2.py

Co-authored-by: Christian Clauss <cclauss@me.com>

* refactor: Rename `_builtin` to `builtin_` ( #7104)

* fix: Rename all instances (#7104)

* refactor: Update variable names (#7104)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* ci: Create ``tox.ini`` and ignore ``A003`` (#7123)

* revert: Remove function name changes (#7104)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Rename tox.ini to .flake8

* Update data_structures/heap/heap.py

Co-authored-by: Dhruv Manilawala <dhruvmanila@gmail.com>

* refactor: Rename `next_` to `next_item` (#7104)

* ci(pre-commit): Add `flake8` plugin `flake8-bugbear` (#7127)

* refactor: Follow `flake8-bugbear` plugin (#7127)

* fix: Correct `knapsack` code (#7127)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

Co-authored-by: Christian Clauss <cclauss@me.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Dhruv Manilawala <dhruvmanila@gmail.com>
2022-10-13 18:03:06 +02:00
..
__init__.py Add __init__.py files in all the directories (#2503) 2020-09-28 19:42:36 +02:00
abbreviation.py Update abbreviation.py (#1887) 2020-04-17 20:04:30 +02:00
all_construct.py Add flake8 pluin flake8 bugbear to pre-commit (#7132) 2022-10-13 18:03:06 +02:00
bitmask.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
catalan_numbers.py Add catalan_numbers.py (#4455) 2021-05-31 19:55:01 -05:00
climbing_stairs.py Change occurrences of str.format to f-strings (#4118) 2021-02-23 11:23:49 +05:30
edit_distance.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
factorial.py fixed error in factorial.py (#1888) 2020-08-05 13:18:41 +02:00
fast_fibonacci.py from __future__ import annotations (#2464) 2020-09-23 13:30:13 +02:00
fibonacci.py Rewrite fibonacci.py (#5665) (#5677) 2021-10-31 22:19:44 +08:00
floyd_warshall.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
fractional_knapsack_2.py [mypy] Fix type annotations for dynamic programming (#4687) 2021-09-03 11:49:23 +02:00
fractional_knapsack.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
integer_partition.py Fix type annotations for integer_partition.py #4052 (#4689) 2021-08-30 10:06:59 +02:00
iterating_through_submasks.py Change occurrences of str.format to f-strings (#4118) 2021-02-23 11:23:49 +05:30
k_means_clustering_tensorflow.py_tf Travis CI: Upgrade to Python 3.8 (#1783) 2020-02-23 04:23:00 +01:00
knapsack.py Add flake8 pluin flake8 bugbear to pre-commit (#7132) 2022-10-13 18:03:06 +02:00
longest_common_subsequence.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
longest_increasing_subsequence_o(nlogn).py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
longest_increasing_subsequence.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
longest_sub_array.py Set the Python file maximum line length to 88 characters (#2122) 2020-06-16 10:09:19 +02:00
matrix_chain_order.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
max_non_adjacent_sum.py from __future__ import annotations (#2464) 2020-09-23 13:30:13 +02:00
max_sub_array.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
max_sum_contiguous_subsequence.py Fixes LGTM issues (#1745) 2020-02-10 22:23:19 +01:00
minimum_coin_change.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
minimum_cost_path.py from __future__ import annotations (#2464) 2020-09-23 13:30:13 +02:00
minimum_partition.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00
minimum_steps_to_one.py Implemented minimum steps to one using tabulation. (#3911) 2020-12-09 17:22:07 +08:00
optimal_binary_search_tree.py Add flake8-builtins to pre-commit and fix errors (#7105) 2022-10-13 19:53:59 +05:30
rod_cutting.py Improve code on f-strings and brevity (#6126) 2022-05-13 20:51:44 +08:00
subset_generation.py Set the Python file maximum line length to 88 characters (#2122) 2020-06-16 10:09:19 +02:00
sum_of_subset.py Add pep8-naming to pre-commit hooks and fixes incorrect naming conventions (#7062) 2022-10-13 00:54:20 +02:00