Bug Report for https://neetcode.io/problems/two-integer-sum-ii The test expected output is wrong. Input: numbers=[2,3,4] target=6 Your Output: [2,4] Expected output: [1,3] If the required target is 6 , then correct answer should be {2,4} not {1,6}. Please update the expected output .