Fixes issues with variable initialization order

This commit is contained in:
LSaldyt
2017-11-18 18:30:23 -07:00
parent ee483851d8
commit 9c47615c5a
2 changed files with 4 additions and 0 deletions

BIN
.distributions Normal file

Binary file not shown.

View File

@ -34,6 +34,10 @@ class Problem:
print('-' * 120) print('-' * 120)
def solve(self): def solve(self):
print('-' * 120)
print('Testing copycat problem: {} : {} :: {} : _'.format(self.initial,
self.modified,
self.target))
copycat = Copycat() copycat = Copycat()
answers = dict() answers = dict()
if self.formulas == None: if self.formulas == None: