Allen Chou says to YSITD
還有一種是不會比大小的 求 a, b, c, d 最小值,在不能用 sort 的情況下 不就 if a <= b and a <= c and a <= d //min = a else if b <= c and b <= d // min = b else if c <= d // min = c else // min = d