HTMLify

LeetCode - Truncate Sentence - Python
Views: 25 | Author: abh
class Solution:truncateSentence=lambda _,s,k:" ".join(s.split()[:k])

Comments