coolblaze03's picture
Upload folder using huggingface_hub
1514a0b verified
Raw
History Blame Contribute Delete
91 Bytes
def nth_nums(nums, n):
nth_nums = list(map(lambda x: x ** n, nums))
return nth_nums