Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added __pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file not shown.
Binary file modified q01_get_minimum_unique_square/__pycache__/build.cpython-36.pyc
Binary file not shown.
8 changes: 6 additions & 2 deletions q01_get_minimum_unique_square/build.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# %load q01_get_minimum_unique_square/build.py
# Default imports

from math import sqrt

# Write your solution here:

def q01_get_minimum_unique_square(x,y):
"write your solution here"

x = len([i for i in list(range(x,y+1)) if(i**0.5).is_integer()])
return x



Binary file not shown.
Binary file not shown.