Type Challenges Judge
Problems
Progress
Trim
Implement Trim<T> which takes an exact string type and returns a new string with the whitespace from both ends removed.
Trim<T>
For example
type trimmed = Trim<' Hello World '> // expected to be 'Hello World'