summaryrefslogtreecommitdiff
path: root/progs/a274.py
blob: bdfbc1dc34a4d4bd7ab852c52bff1a4c127431d6 (plain)
1
2
3
4
def min_difference(test_list):
  temp = [abs(b - a) for a, b in test_list]
  res = min(temp)
  return (res)