std::vector<std::tuple<int, int>> inputs = ...; | |
std::vector<std::tuple<int, int>> expected = ...; | |
custom_sort(begin(inputs), end(inputs)); | |
ASSERT_EQ(expected, inputs); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment