Skip to content

Commit

Permalink
Delete empty junk file (TheAlgorithms#9062)
Browse files Browse the repository at this point in the history
* updating DIRECTORY.md

* updating DIRECTORY.md

* Delete empty junk file

* updating DIRECTORY.md

* Fix ruff errors

* Fix more ruff errors

---------

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
  • Loading branch information
tianyizheng02 and github-actions authored Sep 16, 2023
1 parent 1488cde commit fbad85d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
1 change: 0 additions & 1 deletion DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* [In Static Equilibrium](arithmetic_analysis/in_static_equilibrium.py)
* [Intersection](arithmetic_analysis/intersection.py)
* [Jacobi Iteration Method](arithmetic_analysis/jacobi_iteration_method.py)
* [Junk](arithmetic_analysis/junk.py)
* [Lu Decomposition](arithmetic_analysis/lu_decomposition.py)
* [Newton Forward Interpolation](arithmetic_analysis/newton_forward_interpolation.py)
* [Newton Method](arithmetic_analysis/newton_method.py)
Expand Down
Empty file removed arithmetic_analysis/junk.py
Empty file.
8 changes: 5 additions & 3 deletions computer_vision/haralick_descriptors.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ def binarize(image: np.ndarray, threshold: float = 127.0) -> np.ndarray:
return np.where(image > threshold, 1, 0)


def transform(image: np.ndarray, kind: str, kernel: np.ndarray = None) -> np.ndarray:
def transform(
image: np.ndarray, kind: str, kernel: np.ndarray | None = None
) -> np.ndarray:
"""
Simple image transformation using one of two available filter functions:
Erosion and Dilation.
Expand Down Expand Up @@ -154,7 +156,7 @@ def transform(image: np.ndarray, kind: str, kernel: np.ndarray = None) -> np.nda
return transformed


def opening_filter(image: np.ndarray, kernel: np.ndarray = None) -> np.ndarray:
def opening_filter(image: np.ndarray, kernel: np.ndarray | None = None) -> np.ndarray:
"""
Opening filter, defined as the sequence of
erosion and then a dilation filter on the same image.
Expand All @@ -172,7 +174,7 @@ def opening_filter(image: np.ndarray, kernel: np.ndarray = None) -> np.ndarray:
return transform(transform(image, "dilation", kernel), "erosion", kernel)


def closing_filter(image: np.ndarray, kernel: np.ndarray = None) -> np.ndarray:
def closing_filter(image: np.ndarray, kernel: np.ndarray | None = None) -> np.ndarray:
"""
Opening filter, defined as the sequence of
dilation and then erosion filter on the same image.
Expand Down
6 changes: 3 additions & 3 deletions conversions/convert_number_to_words.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def max_value(cls, system: str) -> int:


class NumberWords(Enum):
ONES: ClassVar = {
ONES: ClassVar[dict[int, str]] = {
0: "",
1: "one",
2: "two",
Expand All @@ -67,7 +67,7 @@ class NumberWords(Enum):
9: "nine",
}

TEENS: ClassVar = {
TEENS: ClassVar[dict[int, str]] = {
0: "ten",
1: "eleven",
2: "twelve",
Expand All @@ -80,7 +80,7 @@ class NumberWords(Enum):
9: "nineteen",
}

TENS: ClassVar = {
TENS: ClassVar[dict[int, str]] = {
2: "twenty",
3: "thirty",
4: "forty",
Expand Down
2 changes: 1 addition & 1 deletion graphs/tarjans_scc.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def create_graph(n, edges):
n_vertices = 7
source = [0, 0, 1, 2, 3, 3, 4, 4, 6]
target = [1, 3, 2, 0, 1, 4, 5, 6, 5]
edges = [(u, v) for u, v in zip(source, target)]
edges = list(zip(source, target))
g = create_graph(n_vertices, edges)

assert [[5], [6], [4], [3, 2, 1, 0]] == tarjan(g)

0 comments on commit fbad85d

Please sign in to comment.