Bug Report for https://neetcode.io/problems/two-integer-sum-ii
Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.
Input:
numbers=[2,3,4]
target=6
Your Output:
[2,4]
Expected output:
[1,3]
in expected outputs 1 which is not in given numbers.correct answer for this numbers is 2,4