Objective
Write a program that takes a single string argument and prints it with all whitespace runs collapsed to a single space and no spaces at the start or end.
Steps
$ ./clean_words " cursor found another shortcut "
cursor found another shortcut
$ ./clean_words "already clean input"
already clean input
$ ./clean_words
wrong number of arguments
Expected files
Allowed functions

Objective
Write a program that takes a single string argument and prints it with all whitespace runs collapsed to a single space and no spaces at the start or end.
Steps
$ ./clean_words " cursor found another shortcut "
cursor found another shortcut
$ ./clean_words "already clean input"
already clean input
$ ./clean_words
wrong number of arguments
Expected files
Allowed functions

Tests
Run the tests to grade your code