Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Count squares
class Solution { public: int countSquares(int N) { // code here int c=0; for(int i=1;i*i<N;i++) { c++; } return c; } };
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Perfect Square Solution
can be zero
Inherit
pac update
Volume of Sphere with Powf
char
Badanie symetryczności macierzy
Handling new types without using RTTI
Pairs with given sum
Factorial Inv wip
Please log in to post a comment.