Answer to Question #314496 in Python for Mahesh

Question #314496

Minimal Absolute Difference

There are N pyramids in a line.You are given their heights as a list of integers.Write a program to find the minimum absolute difference between the heights of any two different pyramids.


Input

The input is a single line containing space-separated integers.


Output

The output should be a single line containing the minimum absolute difference of any two different pyramid heights.


Explanation

Given Pyramid heights are 7 1 5.

The absolute difference between the heights of any two different pyramids are



1
Expert's answer
2022-03-19T12:24:57-0400
line = input()
L = [int(s) for s in line.split()]

n = len(L)
max_diff = 0
for i in range(n-1):
    for j in range(i+1, n):
        diff = abs(L[i] - L[j])
        if diff > max_diff:
            max_diff = diff

print('Given Pyramid heights are', end=' ')
for i in range(n):
    print(L[i], end=' ')
print()
print('The absolute difference between the heights of any two different pyramids are',
       max_diff)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS