Minimum Absolute Difference in an Array

  • + 2 comments

    Here is Python 3 solution from my HackerrankPractice repository:

    _ = input()
    arr = sorted(map(int, input().split()))
    diff = 2*10**9
    for i in range(1, len(arr)):
        diff = min(diff, arr[i] - arr[i-1])
    print(diff)
    

    Feel free to ask if you have any questions :)