#16 - Split Sentence into words

Write a program to split a given sentence into individual words. Remove any leading or trailing whitespace from each word.

Example 1

Input

"Coding is fun."

Output

["Coding", "is", "fun."]

Example 2

Input

" Coding is fun. !!! "

Output

["Coding", "is", "fun.", "!!!"]

Last updated