Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ongsici committed Oct 28, 2024
1 parent b703cd6 commit a7d87d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def process_query(input):
value = input.split(":")[-1].split(",")
result = []
for number in value:
number=number.strip()
number = number.strip()
if is_square(int(number)) and is_cube(int(number)):
result.append(number)
return ", ".join(result)
Expand Down

0 comments on commit a7d87d3

Please sign in to comment.