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
Sep 27, 2004 at 9:40 PMbool isPalen(const string & s)
{
int len = s.length();
if(len <= 0) // we can also add more string checking here
{
cerr << "empty input" << endl;
return false;
}
for(int i = 0; i < len / 2; ++i)
{
cout << s[i] << endl; // for debugging
if(s[i] != s[len - i - 1])
return false;
}
return true;
}
I'm a new graduate and I wish some engineer in Microsoft liked to interview me.