Skip to content

Commit eddd982

Browse files
github-actionsgithub-actions
github-actions
authored and
github-actions
committed
fixup! Format Python code with psf/black push
1 parent f0dfc4f commit eddd982

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

dynamic_programming/optimal_binary_search_tree.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
class Node:
2626
"""Binary Search Tree Node"""
27+
2728
def __init__(self, key, freq):
2829
self.key = key
2930
self.freq = freq

maths/bisection.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
77
https://en.wikipedia.org/wiki/Bisection_method
88
"""
9+
10+
911
def equation(x: float) -> float:
1012
"""
1113
>>> equation(5)

0 commit comments

Comments
 (0)