/gist:0446bd889378dc090279 Secret
Created
March 23, 2013 17:32
parte finale
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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