Skip to content

Commit

Permalink
Fix the comments
Browse files Browse the repository at this point in the history
  • Loading branch information
SaadBenn authored Mar 19, 2018
1 parent b5b4e96 commit 1d2ac92
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions maths/next-perfect-square
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
# This program will look for the next perfect square.

"""
This program will look for the next perfect square.
Check the argument to see if it is a perfect square itself, if it is not then return -1 otherwise look for the next perfect square

for instance if you pass 121 then the script should return the next perefct square which is 144.

for instance if you pass 121 then the script should return the next perfect square which is 144.
"""

def find_next_square(sq):
Expand Down

0 comments on commit 1d2ac92

Please sign in to comment.