mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
refactoring
This commit is contained in:
parent
7bbddccf80
commit
ebbb1313e9
1 changed files with 2 additions and 4 deletions
|
@ -1979,10 +1979,8 @@ Congratulations, you did it !
|
||||||
|
|
||||||
def isGameWon(self):
|
def isGameWon(self):
|
||||||
# default: all Foundations must be filled
|
# default: all Foundations must be filled
|
||||||
c = 0
|
return sum([len(s.cards) for s in self.s.foundations]) == \
|
||||||
for s in self.s.foundations:
|
len(self.cards)
|
||||||
c += len(s.cards)
|
|
||||||
return c == len(self.cards)
|
|
||||||
|
|
||||||
def getFoundationDir(self):
|
def getFoundationDir(self):
|
||||||
for s in self.s.foundations:
|
for s in self.s.foundations:
|
||||||
|
|
Loading…
Add table
Reference in a new issue