Skip to content

Commit cec0735

Browse files
wmboylesjiegillet
authored andcommitted
Replaced duplicate point from test example (#237)
* Replaced duplicate point from test example in Python Jarvis March
1 parent b93e75f commit cec0735

File tree

1 file changed

+1
-1
lines changed
  • chapters/computational_geometry/gift_wrapping/jarvis_march/code/py

1 file changed

+1
-1
lines changed

chapters/computational_geometry/gift_wrapping/jarvis_march/code/py/jarvisMarch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def jarvisMarch(gift):
2626

2727

2828
def main():
29-
testGift = [(5, 7), (5, 7), (-6, -12), (-14, -14), (9, 9),
29+
testGift = [(-5, 2), (5, 7), (-6, -12), (-14, -14), (9, 9),
3030
(-1, -1), (-10, 11), (-6, 15), (-6, -8), (15, -9),
3131
(7, -7), (-2, -9), (6, -5), (0, 14), (2, 8)]
3232
hull = jarvisMarch(testGift)

0 commit comments

Comments
 (0)