Skip to content

Instantly share code, notes, and snippets.

@omargfh
Created December 18, 2022 09:12
Show Gist options
  • Save omargfh/4a91d2102514530f4825e19df4940a6a to your computer and use it in GitHub Desktop.
Save omargfh/4a91d2102514530f4825e19df4940a6a to your computer and use it in GitHub Desktop.
d = dict()
runningTotal = {a:b for (a, b) in zip(d.keys(), [0] + reduce(lambda x, y: x+[x[-1]+y], d.values(), [0])[1:-1])}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment