What Language is This?
- by bobber205
Going through some example code sent to me and honestly, I have no idea what language this is
def uniqify(arr):
b = {}
for i in arr:
b[i] = 1
return b.keys()
Is it Python?
I am also curious what keys() does. It's obvious it returns an array but what does it do the array that calls the function? :P