mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 12:44:06 +00:00
10 lines
174 B
C++
10 lines
174 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
int n = 42;
|
|
bool answer = false;
|
|
Solution soln;
|
|
cout << "Checked happy number correctly? " << soln.test(n, answer) << endl;
|
|
return 0;
|
|
} |