물음표 살인마의 개발블로그

알고리즘 문제/CodeWar

You're a square!

BEstyle 2022. 9. 27. 12:31

A square of squares

You like building blocks. You especially like building blocks that are squares. And what you even like more, is to arrange them into a square of square building blocks!

However, sometimes, you can't arrange them into a square. Instead, you end up with an ordinary rectangle! Those blasted things! If you just had a way to know, whether you're currently working in vain… Wait! That's it! You just have to check if your number of building blocks is a perfect square.

Task

Given an integral number, determine if it's a square number:

In mathematics, a square number or perfect square is an integer that is the square of an integer; in other words, it is the product of some integer with itself.

The tests will always use some integral number, so don't worry about that in dynamic typed languages.


def is_square(n):    
    if n<0:
        return False
    elif n==0:
        return True
    print(n)
    return (n**(1/2)==round(n**(1/2)))

'알고리즘 문제 > CodeWar' 카테고리의 다른 글

Factorial  (0) 2022.09.27
Will you make it?  (0) 2022.09.27
Sort the odd  (0) 2022.09.27
Multiples of 3 or 5  (0) 2022.09.27
Area or Perimeter  (1) 2022.09.26