Skip to content

Commit 503f1ba

Browse files
authored
...
1 parent 60b20c4 commit 503f1ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

divide_and_conquer/convex_hull.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,10 @@ def convex_hull_recursive(points):
325325
>>> convex_hull_recursive([[0, 0], [1, 0], [10, 0]])
326326
[(0.0, 0.0), (10.0, 0.0)]
327327
>>> convex_hull_recursive([[-1, 1],[-1, -1], [0, 0], [0.5, 0.5], [1, -1], [1, 1],
328-
[-0.75, 1]])
328+
... [-0.75, 1]])
329329
[(-1.0, -1.0), (-1.0, 1.0), (1.0, -1.0), (1.0, 1.0)]
330330
>>> convex_hull_recursive([(0, 3), (2, 2), (1, 1), (2, 1), (3, 0), (0, 0), (3, 3),
331-
(2, -1), (2, -4), (1, -3)])
331+
... (2, -1), (2, -4), (1, -3)])
332332
[(0.0, 0.0), (0.0, 3.0), (1.0, -3.0), (2.0, -4.0), (3.0, 0.0), (3.0, 3.0)]
333333
334334
"""

0 commit comments

Comments
 (0)