Skip to content

Instantly share code, notes, and snippets.

@emaballarin
Created February 6, 2021 16:20
Show Gist options
  • Save emaballarin/ac2035ac4b77ca88749eeaf04766c446 to your computer and use it in GitHub Desktop.
Save emaballarin/ac2035ac4b77ca88749eeaf04766c446 to your computer and use it in GitHub Desktop.
def reverse_dict(d):
return {lhs: [_ for _ in d.keys() if (lhs in d.get(_))] for lhs in set().union(*(d.values()))}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment