Skip to content

Instantly share code, notes, and snippets.

@Bloofer
Created January 23, 2018 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bloofer/a9cc93986792aafbada450c4b4f020f6 to your computer and use it in GitHub Desktop.
Save Bloofer/a9cc93986792aafbada450c4b4f020f6 to your computer and use it in GitHub Desktop.
mismatch.py
def find_mismatches(d1,d2):
mismatches = [];
for (key,data) in d1.items():
if data != d2[key]:
mismatches.append(key)
return mismatches
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment