P.1: Fixed incorrect use of std::find.

This commit is contained in:
Michael Park 2015-12-10 07:23:41 -05:00
parent 3b29134985
commit a26d6c98d5

View File

@ -387,7 +387,7 @@ A much clearer expression of intent would be:
string val; string val;
cin >> val; cin >> val;
// ... // ...
auto p = find(v, val); // better auto p = find(begin(v), end(v), val); // better
// ... // ...
} }