Consider the code:
def contains(v, d):
''' (object, dict of {object: list}) -> bool
Return whether v is an element of one of the list values in d.
>>> contains('moogah', {1: [70, 'blue'], 2: [1.24, 'moogah', 90], 3.14: [80, 100]})
True
>>> contains('moogah', {'moogah': [1.24, 'frooble', 90], 3.14: [80, 100]})
False
'''
found = False # Whether we have found v in a list in d.
# CODE MISSING HERE
return found
Select the code fragment(s) that make the function above match its docstring description.