2025-plovdiv-testing-debugging/hands_on/local_maxima/local_maxima.py
2025-09-19 10:46:45 +02:00

10 lines
193 B
Python

def find_maxima(x):
"""Find local maxima of x.
Input arguments:
x -- 1D list of real numbers
Output:
idx -- list of indices of the local maxima in x
"""
return []