diff options
Diffstat (limited to 'progs/a55.py')
-rw-r--r-- | progs/a55.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/a55.py b/progs/a55.py new file mode 100644 index 0000000..219b207 --- /dev/null +++ b/progs/a55.py @@ -0,0 +1,7 @@ +def find_Min_Sum(a,b,n):
+ a.sort()
+ b.sort()
+ sum = 0
+ for i in range(n):
+ sum = sum + abs(a[i] - b[i])
+ return sum
\ No newline at end of file |