Skip to content

Commit

Permalink
Update you_are_square.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 20, 2024
1 parent fc8d590 commit 3852e5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kyu_7/you_are_square/you_are_square.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Solution for -> You\'re a square.
Solution for -> You're a square.
Created by Egor Kostan.
GitHub: https://github.com/ikostan
Expand All @@ -10,9 +10,9 @@

def is_square(n: int) -> bool:
"""
Given an integral number, determine if it's a square number.
Determine if it's a square number.
:param n:
:param n: int
:return: bool
"""
if n > -1:
Expand Down

0 comments on commit 3852e5f

Please sign in to comment.