Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Gary Daniels and Evan Goldring - Mock whiteboard problem
May 23, 2005 at 1:06 AMC++ standard library facility:
bool is_palindrome(const string& s) {
return equal(s.begin(), s.end(), s.rbegin());
}
The equal funcition assumes that the second sequence is the same size as the first, so it does not need
and ending iterator.
Stefan