Skip to content

Instantly share code, notes, and snippets.

@thiagomg
Created November 16, 2020 00:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagomg/7d78359f5e7a886cb59c5fa470ed15c1 to your computer and use it in GitHub Desktop.
Save thiagomg/7d78359f5e7a886cb59c5fa470ed15c1 to your computer and use it in GitHub Desktop.
int totalize(const std::vector<int> &v, int pos) {
int total = 0;
for(int i=0; i < pos.size(); ++i) {
total += v[i];
}
return total;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment