1. /**
    2. * @param str: the input string
    3. * @return: The lower case string
    4. */
    5. import "strings"
    6. func ToLowerCase(str string) string {
    7. // Write your code here
    8. return strings.ToLower(str)
    9. }