Skip to content

Commit

Permalink
Update tickets.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 19, 2024
1 parent 160e6b2 commit ec4d39b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kyu_6/vasya_clerk/tickets.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ def tickets(people: list) -> str:
"""
Tickets.
Return YES, if Vasya can sell a ticket to every
Return 'YES', if Vasya can sell a ticket to every
person and give change with the bills he has at
hand at that moment. Otherwise return NO.
:param people:
:return:
hand at that moment. Otherwise, return 'NO'.
:param people: list
:return: str
"""
vasya: list = []

Expand Down

0 comments on commit ec4d39b

Please sign in to comment.