fixed typo (#1363)

Co-authored-by: unknown <nickjr@gmail.com>
This commit is contained in:
Nikhil k
2023-09-19 16:40:32 +05:30
committed by GitHub
parent 00e40e6f06
commit 9757e2bee3
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
*
* Notes:
* - works by using divide and conquer
* - the function gets the array A with n Real numbers and returns the local max point index (if more than one exists return the first one)
* - the function gets the array A with n Real numbers and returns the index of local max point (if more than one exists return the first one)
*
* @complexity: O(log(n)) (on average )
* @complexity: O(log(n)) (worst case)