mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 12:44:06 +00:00
12 lines
217 B
C++
12 lines
217 B
C++
#include "soln.hpp"
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int x = 69, answer = 8;
|
|
Solution soln;
|
|
cout << "Square root correct? " << soln.test(x, answer) << endl;
|
|
return 0;
|
|
} |