HOME

Adobe India Hackathon - Mock Test 8

Select your answers. Once selected, you cannot change them.

Section 1: MCQs

Section 2: DSA Problem

Minimum Difference Pair

Given an array of integers, find the pair of elements that has the minimum absolute difference between them. Return the pair.

Input: [3, 8, 15, 17]
Output: (15, 17)

Write your solution below: