Skip to content
Permalink
cfe5d13442
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
14 lines (13 sloc) 311 Bytes
#include <string>
/**
* @brief Identifies if the given string is a palindrome.
*
* A palindrome is a word that can be read the same way forwards and
* backwards. For example, RACECAR.
*
* @param String to check.
* @return Is a palindrome (true/false).
*/
bool is_palindrome( std::string value )
{
}