loom-benchmark-mbpp / 128 /solution /_reference.py
sqy201x's picture
Add files using upload-large-folder tool
6c62356 verified
Raw
History Blame Contribute Delete
160 Bytes
def long_words(n, str):
word_len = []
txt = str.split(" ")
for x in txt:
if len(x) > n:
word_len.append(x)
return word_len