Euler_90.cpp (313B)
1 #include "Euler.h" 2 3 uint64_t Euler::CubeDigitPairs() 4 { 5 //std::vector<std::string> squares = { "01", "04", "09", "16", "25", "36", "49", "64", "81" }; 6 7 // most important 9 / 6 8 // second most 0, 1, 4 9 // third most 2, 5, 3, 8 10 // trash 7 11 //{ 2, 1, 3, 4 } 12 //{ 5, 0, 6, 8 } 13 14 return 0; 15 }