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