#166. 字符串小写转换

    ID: 166 Type: Default 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>codingbatFunctional-1gesp3字符串一维数组

字符串小写转换

Convert Strings to Lowercase

Background

In daily programming, we often need to process text data. Sometimes, to standardize data formats or perform case-insensitive comparisons, we need to convert strings to lowercase.

Problem Description

Given a list of strings, return a list where each string is converted to lowercase (Note: String toLowerCase() method).

Input Format

The input is given from standard input in the following format.

s_1 s_2 ... s_n

Output Format

Output to standard output in the following format.

`["lower(s_1)\