Skip to content

Instantly share code, notes, and snippets.

Created March 23, 2013 17:32
parte finale
def scrivisoluzione(s):
#funzione ricorsiva per scrivere la soluzione alla dritta
if s==w:
bellastampa(s)
return
else:
scrivisoluzione(mosse[s][1])
bellastampa(s)
scrivisoluzione(finale)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment