Initialer Import der Synology Scripts

This commit is contained in:
root
2026-08-05 08:43:57 +02:00
commit 5e32a7c411
404 changed files with 79932 additions and 0 deletions
@@ -0,0 +1,14 @@
def list_max(input_list):
max_value = input_list[0]
for i in range(1, len(input_list)):
if input_list[i] > max_value:
max_value = input_list[i]
print(max_value)
list1 = [-2, 1, 2, -10, 22, -10]
list_max(list1)
list2 = [-20, 123, 112, -10, 22, -120]
list_max(list2)