Skip to content

Commit

Permalink
feat: largest num
Browse files Browse the repository at this point in the history
  • Loading branch information
ongsici committed Oct 28, 2024
1 parent a40766f commit cba305e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@


def process_query(input):
if "numbers is the largest" in input:
value = input[:-1].split(":")[-1].split(",")
return max(value)
if "your name" in input:
return "SiCi"
if input == "dinosaurs":
Expand Down

0 comments on commit cba305e

Please sign in to comment.