Skip to content

Commit

Permalink
🧪 Edge cases for Problem 001
Browse files Browse the repository at this point in the history
  • Loading branch information
jobearrr committed Jul 20, 2024
1 parent 725bd7e commit 4a03d75
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ extension TwoSumTestCaseProvider {
}

var data: [TestData<(nums: [Int], target: Int), [Int]>] { [
TestData(
input: ([], 0),
expectedOutput: []
),
TestData(
input: ([2, 7, 11, 15], 9),
expectedOutput: [0, 1]
Expand Down

0 comments on commit 4a03d75

Please sign in to comment.