typo
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-09-11 03:01:09 +02:00
parent d580e9f91a
commit d991c6f42f

View File

@ -8,7 +8,7 @@ def avg(ls: list) -> int:
def decision(h1: list, h2: list) -> int:
if avg(h2[:4]) >= 0.05:
if avg(h2[:4]) >= 0.5:
return 1
else:
return 0