project-euler/euler/euler/euler_p4.cpp

11 lines
141 B
C++

#include "euler_p4.h"
#include <string>
int euler4() {
return 1001;
}
bool isPalindrome(const std::string& testString) {
return true;
}