Created
December 1, 2021 12:24
-
-
Save HappyCerberus/6f83d1d20228a006e3969214ecaf1480 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TEST(SlidingTest, Simple) { | |
std::vector<std::pair<std::string, uint32_t>> inputs = { | |
{"", 0}, // not enough elements for a window | |
{"0 1", 0}, // not enough elements for a window | |
{"0 1 0", 0}, // a single window | |
{"0 0 0 0 0 0", 0}, // monotonic, no increase | |
{"0 1 2 3", 1}, // two windows, increasing | |
{"3 2 1 0", 0}, // two windows, decreasing | |
{"0 1 0 1 0 1", 2}, // 1, 2, 1, 2 - two increasing | |
{"199 200 208 210 200 207 240 269 260 263", 5}, // from aoc | |
}; | |
for (auto &i : inputs) { | |
std::stringstream s(i.first); | |
EXPECT_EQ(count_increasing_windows(s), i.second) << " on input " << i.first; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment