Map each character through its lowercase representation while leaving non-uppercase characters unchanged.
complexity
O(n) time and O(n) output space.
solution files
- Go
to-lower-case/solution.go - Python
to-lower-case/solution.py - TypeScript
to-lower-case/solution.ts