isort --profile black --recursive . (#2170) · kadeng/python-algorithms@cd3e8f9 · GitHub
Skip to content

Commit cd3e8f9

Browse files
authored
isort --profile black --recursive . (TheAlgorithms#2170)
* isort --profile black --recursive . * Update codespell.yml * typo: vertices * typo: Explanation * typo: Explanation * Fix typos
1 parent 25d9d81 commit cd3e8f9

6 files changed

Lines changed: 10 additions & 9 deletions

File tree

.github/workflows/autoblack.yml

Lines changed: 2 additions & 1 deletion

.github/workflows/codespell.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ jobs:
1313
SKIP="./.*,./other/dictionary.txt,./other/words,./project_euler/problem_22/p022_names.txt"
1414
codespell -L ans,fo,hist,iff,secant,tim --skip=$SKIP --quiet-level=2
1515
- name: Codespell comment
16-
if: ${{ failure() }}
17-
uses: plettich/python_codespell_action@master
16+
if: ${{ failure() }}
17+
uses: plettich/python_codespell_action@master

dynamic_programming/max_non_adjacent_sum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Video Explaination: https://www.youtube.com/watch?v=6w60Zi1NtL8&feature=emb_logo
1+
# Video Explanation: https://www.youtube.com/watch?v=6w60Zi1NtL8&feature=emb_logo
22

33
from typing import List
44

dynamic_programming/minimum_cost_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Youtube Explaination: https://www.youtube.com/watch?v=lBRtnuxg-gU
1+
# Youtube Explanation: https://www.youtube.com/watch?v=lBRtnuxg-gU
22

33
from typing import List
44

graphs/connected_components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
def dfs(graph: dict, vert: int, visited: list) -> list:
1414
"""
15-
Use depth first search to find all vertexes
15+
Use depth first search to find all vertices
1616
being in the same component as initial vertex
1717
>>> dfs(test_graph_1, 0, 5 * [False])
1818
[0, 1, 3, 2]

machine_learning/k_means_clust.py

Lines changed: 3 additions & 3 deletions

0 commit comments

Comments
 (0)