1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
This commit is contained in:
Shlomi Fish 2017-12-27 15:44:46 +02:00
parent 7d091f42ab
commit 9879147ee0

View file

@ -879,8 +879,9 @@ class FreeCellSolver_Hint(Base_Solver_Hint):
if str_ != '-':
put_str(game.reserves[i], str_)
continue
g = re.findall(r'\b(' + CARD_RE + r')\b', line)
for str_ in g:
m = re.match(r'^:?\s*(.*)', line)
assert m
for str_ in my_find_re(r'(' + CARD_RE + r')', m):
put_str(game.rows[stack_idx], str_)
stack_idx += 1