You are viewing a single comment's thread. Return to all comments →
C++ solution
bool is_smart_number(int num) { int val = (int) sqrt(num); if(num==1 || (num>=4 && val>1 && num == val*val)) return true; return false; }
Seems like cookies are disabled on this browser, please enable them to open this website
Smart Number 2
You are viewing a single comment's thread. Return to all comments →
C++ solution