Skip to content

Commit

Permalink
Fixed usages of tuple.
Browse files Browse the repository at this point in the history
  • Loading branch information
orhtej2 committed Sep 17, 2024
1 parent d0c2a05 commit 8ab6cdc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions wiggle-sort-ii/tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ INSTANTIATE_TEST_SUITE_P(
KthLargestInArrayTests,
KthLargestInArrayTest,
::testing::Values(
std::tuple<ll>({ 1, 2, 3 }),
std::tuple<ll>({ 3, 1 }),
std::tuple<ll>({ 1 }),
std::tuple<ll>({ 1, 5, 1, 1, 6, 4 }),
std::tuple<ll>({ 1, 3, 2, 2, 3, 1 })
std::make_tuple<ll>({ 1, 2, 3 }),
std::make_tuple<ll>({ 3, 1 }),
std::make_tuple<ll>({ 1 }),
std::make_tuple<ll>({ 1, 5, 1, 1, 6, 4 }),
std::make_tuple<ll>({ 1, 3, 2, 2, 3, 1 })
)
);

0 comments on commit 8ab6cdc

Please sign in to comment.