first commit

This commit is contained in:
2018-07-24 15:40:59 +02:00
commit d0d03faed9
1884 changed files with 366061 additions and 0 deletions

17
projecten1/logic.py Normal file
View File

@@ -0,0 +1,17 @@
import classes
import sys
import os
def GetLowestVal(l):
for x, val in enumerate(l):
if val > 0:
return x
def GetHighestVal(l):
returnVal = 0
for x, val in enumerate(l):
if val > 0:
returnVal = x
return returnVal