Skip to content

Commit

Permalink
Update solution.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 30, 2024
1 parent e478e15 commit 020da2b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kyu_7/pointless_farmer/solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
GitHub: https://github.com/ikostan
"""

from typing import Tuple

def buy_or_sell(pairs: list, harvested_fruit: str) -> list[str] | str:

def buy_or_sell(pairs: list, harvested_fruit: str) -> Tuple[list, str]:
"""
Decide which direction to trade.
Expand Down

0 comments on commit 020da2b

Please sign in to comment.