Open halfrost opened 3 years ago
https://books.halfrost.com/leetcode/ChapterFour/1800~1899/1818.Minimum-Absolute-Sum-Difference/
t := 100001 还有 min(t, abs(n1-n2)) 可以直接用==> abs(n1-n2),因为根据限定:abs(n1-n2)<=1e5 leetcode已验证一次,可以少跑8ms。
https://books.halfrost.com/leetcode/ChapterFour/1800~1899/1818.Minimum-Absolute-Sum-Difference/