summaryrefslogtreecommitdiff
path: root/progs/a274.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a274.py')
-rw-r--r--progs/a274.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/progs/a274.py b/progs/a274.py
new file mode 100644
index 0000000..bdfbc1d
--- /dev/null
+++ b/progs/a274.py
@@ -0,0 +1,4 @@
+def min_difference(test_list):
+ temp = [abs(b - a) for a, b in test_list]
+ res = min(temp)
+ return (res) \ No newline at end of file