Type Challenges Judge
Problems
Progress
Ranking
Capitalize
Implement Capitalize<T> which converts the first letter of a string to uppercase and leave the rest as-is.
Capitalize<T>
For example
type capitalized = Capitalize<'hello world'> // expected to be 'Hello world'