diff --git a/temperature_shortest.py b/temperature_shortest.py new file mode 100644 index 0000000..305188b --- /dev/null +++ b/temperature_shortest.py @@ -0,0 +1,11 @@ +from math import fabs as f +N=int(input()) +if N==0: + print(0) + exit(0) +T=map(int, input().split()) +b=next(T) +for t in T: + if f(t)