
def extreu_negatius(it):
    it1 = filter(lambda p: (p[1:].isdigit() and p[0]=='-'), it)
    it2 = map(int, it1)
    return it2
