updates lecture files
This commit is contained in:
parent
6c782bdf30
commit
952f8b97a5
6 changed files with 10 additions and 154 deletions
|
@ -8,3 +8,8 @@ def find_maxima(x):
|
|||
idx -- list of indices of the local maxima in x
|
||||
"""
|
||||
return []
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
x = [1, 2, 3]
|
||||
print(find_maxima(x))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue