Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions exercises/concept/making-the-grade/.docs/hints.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ Also being familiar with the following can help with completing the tasks:
## 1. Rounding Scores

- `While` loops will continue to execute until their test condition evaluates to `False`.
- `<vector>.pop_back()` will remove and return the last item in a `vector`.
- `<vector>.back()` will return the last item in a `vector`.
- `<vector>.pop_back()` will remove the last item in a `vector`.

## 2. Non-Passing Students

Expand Down Expand Up @@ -47,4 +48,4 @@ Also being familiar with the following can help with completing the tasks:
[string]: https://en.cppreference.com/w/cpp/string/basic_string
[to\_string]: https://en.cppreference.com/w/cpp/string/basic_string/to_string
[emplace]: https://en.cppreference.com/w/cpp/container/vector/emplace_back
[pop]: https://en.cppreference.com/w/cpp/container/vector/pop_back
[pop]: https://en.cppreference.com/w/cpp/container/vector/pop_back