Skip to content

Instantly share code, notes, and snippets.

View Kilenaitor's full-sized avatar

Kyle Minshall Kilenaitor

View GitHub Profile
vector<pair<int, int>> getThem() {
vector<pair<int, int>> v;
for (pair<int, int> x : theList) {
if (x.second == 4) {
v.push(x);
}
}
return v;