Phyton

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

uniqueList = []

def isDuplicate(inValue):

if inValue in uniqueList:

return 1

else:

uniqueList.append(inValue)

return 0

isDuplicate ( !VIVIENDA! )

You might also like