Skip to content

Commit

Permalink
Fixed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
goswami-rahul authored Mar 19, 2018
1 parent 3dfa18a commit b5b4e96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maths/next-perfect-square
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
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
Expand All @@ -14,7 +14,7 @@ def find_next_square(sq):
return -1


Another way:
# Another way:

def find_next_square(sq):
x = sq**0.5
Expand Down

0 comments on commit b5b4e96

Please sign in to comment.