Skip to content

Instantly share code, notes, and snippets.

View matheusfs99's full-sized avatar
🏠
Working from home

Matheus Farias da Silva matheusfs99

🏠
Working from home
View GitHub Profile
@matheusfs99
matheusfs99 / main.py
Last active October 26, 2023 18:52
Jokenpo
def jokenpo(jogada):
wins = {
"pedra": "papel",
"papel": "tesoura",
"tesoura": "pedra"
}
if jogada not in wins:
raise AssertionError
return wins[jogada]