import numpy as np
def softmax(v : [int]):
l1 = list(map(lambda x: np.exp(x), v))
return list(map(lambda x: x / sum(l1), l1))
import numpy as np
def softmax(v : [int]):
l1 = list(map(lambda x: np.exp(x), v))
return list(map(lambda x: x / sum(l1), l1))