Skip to content

Commit

Permalink
changing typo (TheAlgorithms#1168)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwell-aladago authored and cclauss committed Sep 4, 2019
1 parent 9492e7a commit a4ed40b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion divide_and_conquer/convex_hull.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Two algorithms have been implemented for the convex hull problem here.
1. A brute-force algorithm which runs in O(n^3)
2. A divide-and-conquer algorithm which runs in O(n^3)
2. A divide-and-conquer algorithm which runs in O(n log(n))
There are other several other algorithms for the convex hull problem
which have not been implemented here, yet.
Expand Down

0 comments on commit a4ed40b

Please sign in to comment.