1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

refactoring

This commit is contained in:
Shlomi Fish 2019-06-04 15:36:45 +03:00
parent 7bbddccf80
commit ebbb1313e9

View file

@ -1979,10 +1979,8 @@ Congratulations, you did it !
def isGameWon(self):
# default: all Foundations must be filled
c = 0
for s in self.s.foundations:
c += len(s.cards)
return c == len(self.cards)
return sum([len(s.cards) for s in self.s.foundations]) == \
len(self.cards)
def getFoundationDir(self):
for s in self.s.foundations: