AB
Size: a a a
AB
L2
AB
AB
L2
L2
AB
L2
L2
L2
AB
L2
L2
TT
AB
L2
TT
AB
def strange_round(x):
if 0.5 > x % 1 > 0:
return x // 1 + 0.5
elif 0.5 < x % 1 and x % 1 != 0:
return x // 1 + 1
else:
return x
L2
L2
def strange_round(x):
if 0.5 > x % 1 > 0:
return x // 1 + 0.5
elif 0.5 < x % 1 and x % 1 != 0:
return x // 1 + 1
else:
return x