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 2df3cfb commit e178e0c
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 @@ -25,7 +25,7 @@ def process_query(input):
number = number.strip()
if is_square(int(number)) and is_cube(int(number)):
result.append(number)
return " ".join(result)
return ",".join(result)
if "plus" in input:
new_input = input.replace("?", "")
value1 = int(new_input.split(" ")[2])
Expand Down

0 comments on commit e178e0c

Please sign in to comment.