11 lines
141 B
C++
11 lines
141 B
C++
#include "euler_p4.h"
|
|
#include <string>
|
|
|
|
int euler4() {
|
|
return 1001;
|
|
}
|
|
|
|
bool isPalindrome(const std::string& testString) {
|
|
|
|
return true;
|
|
} |