-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Alphametics exercise updated #1119
Merged
Merged
Changes from 10 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
2ea70b0
Update example.py
nikamirrr f302c8b
Update alphametics_test.py
nikamirrr 2a50e59
Update example.py
nikamirrr 684cfe7
Update example.py
nikamirrr 1d3a507
Update example.py
nikamirrr 922103c
Update alphametics_test.py
nikamirrr 45f1134
Update example.py
nikamirrr 08e64a5
Update example.py
nikamirrr 804af5e
Update example.py
nikamirrr 602c1d8
Update example.py
nikamirrr 0837a4a
Update example.py
nikamirrr 489908c
Merge branch 'master' into patch-3
cmccandless File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,98 +1,94 @@ | ||
from itertools import permutations | ||
from string import ascii_uppercase as acu | ||
acuset = set(acu) | ||
dset = set(range(10)) | ||
nzdset = dset.copy() | ||
nzdset.remove(0) | ||
from itertools import permutations, chain, product | ||
|
||
|
||
def solve(an): | ||
# Break down to words | ||
an = an.upper() | ||
alphaexp = [tuple(map(str.strip, s.split("+"))) | ||
for s in an.split("==")] | ||
# Sum powers of 10 for letters ready for computation | ||
expdict = dict() | ||
loexpdict = dict() | ||
for si, s in enumerate(alphaexp): | ||
esign = 1 - (si << 1) | ||
for t in s: | ||
lowletter = t[-1] | ||
if lowletter not in loexpdict: | ||
loexpdict[lowletter] = 0 | ||
loexpdict[lowletter] += esign | ||
for p, letter in enumerate(reversed(t)): | ||
if letter not in expdict: | ||
expdict[letter] = 0 | ||
expdict[letter] += esign * (10 ** p) | ||
|
||
# Extract all letters and check if they are really letters | ||
alldigits = set(expdict.keys()) | ||
if not alldigits <= acuset: | ||
raise ValueError | ||
def digPerms(digset, nzcharset, okzcharset): | ||
nzcnt = len(nzcharset) | ||
okzcnt = len(okzcharset) | ||
totcnt = nzcnt + okzcnt | ||
if totcnt < 1: | ||
return [()] | ||
nzdigset = digset - set((0,)) | ||
nzdigsetcnt = len(nzdigset) | ||
digsetcnt = len(digset) | ||
if digsetcnt < totcnt or nzdigsetcnt < nzcnt: | ||
return [] | ||
elif nzcnt == 0 or digsetcnt == nzdigsetcnt: | ||
return permutations(digset, totcnt) | ||
elif okzcnt == 0: | ||
return permutations(nzdigset, totcnt) | ||
else: | ||
poslst = list(range(nzcnt, totcnt)) | ||
return chain(permutations(nzdigset, totcnt), | ||
map(lambda x: x[0][:x[1]] + (0,) + x[0][x[1]:], | ||
product(permutations(nzdigset, totcnt - 1), | ||
poslst))) | ||
|
||
# extract high and low digigts | ||
hidigits = set([w[0] for s in alphaexp for w in s]) | ||
lodigits = set([w[-1] for s in alphaexp for w in s]) | ||
|
||
# Break down low digits to nonzeros (also high digits) and possible zeros | ||
lonzdigits = lodigits & hidigits | ||
lorestdigits = lodigits - lonzdigits | ||
def check_rec(eqparams, tracecombo=(dict(), 0, set(range(10))), p=0): | ||
maxp, tchars, unzchars, uokzchars, uchars = eqparams | ||
prevdict, cover, remdigs = tracecombo | ||
if p == maxp: | ||
if cover == 0: | ||
return prevdict | ||
else: | ||
return dict() | ||
diglets = uchars[p] | ||
partsum = cover | ||
remexp = [] | ||
for c, v in tchars[p]: | ||
if c in prevdict: | ||
partsum += v * prevdict[c] | ||
else: | ||
remexp.append((c, v)) | ||
for newdigs in digPerms(remdigs, unzchars[p], uokzchars[p]): | ||
newdict = dict(zip(diglets, newdigs)) | ||
testsum = partsum + sum([newdict[c] * v | ||
for c, v in remexp]) | ||
d, r = divmod(testsum, 10) | ||
if r == 0: | ||
newdict.update(prevdict) | ||
rectest = check_rec(eqparams, | ||
(newdict, d, remdigs - set(newdigs)), | ||
p + 1) | ||
if len(rectest) > 0: | ||
return rectest | ||
return dict() | ||
|
||
# Main digits, all but not low | ||
maindigits = alldigits - lodigits | ||
|
||
# Break down main digit list into nonzeroees and possible zeroes | ||
mainnzdigits = maindigits & hidigits | ||
mainrestdigits = maindigits - mainnzdigits | ||
def solve(an): | ||
fullexp = [list(map(lambda x: list(reversed(x.strip())), s.split("+"))) | ||
for s in an.strip().upper().split("==")] | ||
maxp = max([len(w) for s in fullexp for w in s]) | ||
nzchars = set([w[-1] for s in fullexp for w in s]) | ||
|
||
# change sets to tuples to guarantee the stable order | ||
t_lorestdigits = tuple(lorestdigits) | ||
t_lonzdigits = tuple(lonzdigits) | ||
t_lowdigs = t_lorestdigits + t_lonzdigits | ||
unzchars = [] | ||
uokzchars = [] | ||
uchars = [] | ||
tchars = [] | ||
for i in range(maxp): | ||
tchars.append(dict()) | ||
unzchars.append(set()) | ||
uokzchars.append(set()) | ||
|
||
t_mainrestdigits = tuple(mainrestdigits) | ||
t_mainnzdigits = tuple(mainnzdigits) | ||
t_maindigs = t_mainrestdigits + t_mainnzdigits | ||
t_alldigs = t_lowdigs + t_maindigs | ||
for si, s in enumerate(fullexp): | ||
sgn = 1 - (si << 1) | ||
for w in s: | ||
for p, c in enumerate(w): | ||
if c not in tchars[p]: | ||
tchars[p][c] = 0 | ||
tchars[p][c] += sgn | ||
|
||
# Check all possible digit permunations with zeros | ||
for lorest in permutations(dset, len(lorestdigits)): | ||
remnzdigs = nzdset - set(lorest) | ||
# Generate addtional non-zero digit permutations | ||
for lonz in permutations(remnzdigs, len(lonzdigits)): | ||
# Build a dictionary for to test the expression | ||
t_digvals = lorest + lonz | ||
# Evaluate the expression sides | ||
testsum = sum([dig * loexpdict[let] | ||
for let, dig in zip(t_lowdigs, t_digvals)]) | ||
if testsum % 10 == 0: | ||
# Low digit test passed, check the main digits | ||
# if there are no other digits that low digits, | ||
# test the whole expression and return if OK | ||
if len(maindigits) == 0: | ||
testsum = sum([dig * expdict[let] | ||
for let, dig in zip(t_lowdigs, t_digvals)]) | ||
if testsum == 0: | ||
return dict(zip(t_lowdigs, t_digvals)) | ||
totchars = set() | ||
for p, chardict in enumerate(tchars): | ||
for c, cnt in tuple(chardict.items()): | ||
if cnt == 0: | ||
del chardict[c] | ||
elif c not in totchars: | ||
if c in nzchars: | ||
unzchars[p].add(c) | ||
else: | ||
# non-assigned digits | ||
remdigs = dset - set(t_digvals) | ||
# non-assigned without 0 | ||
remnzdigs = remdigs - set((0,)) | ||
# permutations for the rest of the digits | ||
for mainrest in permutations(remdigs, | ||
len(t_mainrestdigits)): | ||
lastnzdigs = remnzdigs - set(mainrest) | ||
# permutations for the non-zero rest of the digits | ||
for mainnz in permutations(lastnzdigs, | ||
len(t_mainnzdigits)): | ||
# Evaluate | ||
t_alldigvals = lorest + lonz + mainrest + mainnz | ||
testsum = sum([dig * expdict[let] | ||
for let, dig in zip(t_alldigs, | ||
t_alldigvals)]) | ||
if testsum == 0: | ||
return dict(zip(t_alldigs, t_alldigvals)) | ||
|
||
return {} | ||
uokzchars[p].add(c) | ||
totchars.add(c) | ||
uchars.append(tuple(unzchars[p]) + tuple(uokzchars[p])) | ||
tchars[p] = tuple(chardict.items()) | ||
return check_rec([maxp, tchars, unzchars, uokzchars, uchars]) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should run fine without wrappingchardict.items()
intuple()
.This is fine.