subtree(users/wpcarro): docking briefcase at '24f5a642'
git-subtree-dir: users/wpcarro git-subtree-mainline:464bbcb15cgit-subtree-split:24f5a642afChange-Id: I6105b3762b79126b3488359c95978cadb3efa789
This commit is contained in:
commit
019f8fd211
766 changed files with 175420 additions and 0 deletions
50
users/wpcarro/scratch/facebook/language2.py
Normal file
50
users/wpcarro/scratch/facebook/language2.py
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
def tokenize(xs):
|
||||
result = []
|
||||
i = 0
|
||||
while i < len(xs):
|
||||
curr = xs[i]
|
||||
if curr in {'*','+'}:
|
||||
result.append(curr)
|
||||
i += 1
|
||||
continue
|
||||
i += 1
|
||||
while i < len(xs) and xs[i] in {str(x) for x in range(10)}:
|
||||
curr += xs[i]
|
||||
i += 1
|
||||
result.append(int(curr))
|
||||
return result
|
||||
|
||||
def parse(tokens):
|
||||
result = []
|
||||
series = []
|
||||
for token in tokens:
|
||||
if token == '*':
|
||||
continue
|
||||
elif token == '+':
|
||||
result.append(series)
|
||||
series = []
|
||||
else:
|
||||
series.append(token)
|
||||
if series:
|
||||
result.append(series)
|
||||
return result
|
||||
|
||||
def product(xs):
|
||||
result = 1
|
||||
for x in xs:
|
||||
result *= x
|
||||
return result
|
||||
|
||||
def evaluate(tree):
|
||||
return sum([product(xs) for xs in tree])
|
||||
|
||||
print(evaluate(parse(tokenize("2+30*8*9+10"))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue