Skip to content

Commit

Permalink
Remove blank lines after docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsource-autofix[bot] authored Jul 27, 2021
1 parent 6a6eb69 commit 1599234
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def __init__(self, graph):
def bfs(self, s, t, parent):
"""Returns true if there is a path from source 's' to sink 't' in
residual graph. Also fills parent[] to store the path."""

# Mark all the vertices as not visited
visited = [False] * self.row

Expand Down
1 change: 0 additions & 1 deletion python/topics/geometry/convex-hull.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ def convex_hull(points):
starting from the vertex with the lexicographically smallest coordinates.
Implements Andrew's monotone chain algorithm. O(n log n) complexity.
"""

# Sort the points lexicographically (tuples are compared lexicographically).
# Remove duplicates to detect the case we have just one unique point.
points = sorted(set(points))
Expand Down
1 change: 0 additions & 1 deletion python/tree/bfs_traversal.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def printLevelOrder(root):
>>> printLevelOrder(root)
[1, 2, 3, 4, 5, 6, 7]
"""

# Base Case
if root is None:
return
Expand Down

0 comments on commit 1599234

Please sign in to comment.