updates lecture files

This commit is contained in:
Pamela Hathway 2025-09-23 13:19:04 +03:00
parent 6c782bdf30
commit 952f8b97a5
6 changed files with 10 additions and 154 deletions

View file

@ -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))