Press "Enter" to skip to content

Posts tagged as “lower case”

花花酱 LeetCode 709. To Lower Case

Problem

Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase.

Solution

Time complexity: O(n)

Space complexity: O(1)

C++

Java

Python3

Python3 1-linear