BlueBook - Lower Case

View as PDF

Submit solution

Points: 3
Time limit: 1.0s
Memory limit: 16M

Problem type
BlueBook

Given an input string, whose length is less than 256, output the string with all of the upper case letters (AZ) converted to the corresponding lower case letter (az).

Input Specification

Line 1: one integer T (1 \le T \le 100) denoting the number of test cases.
Lines 2 \dots T+1: one string of length < 256 composed of lower case letters (az), upper case letters (AZ), and random characters (*, ;, etc).

Sample Input

2
abCDefg
WEEEIPWNNOOBS~~?~?~??@#!#$%?$^?$%*

Sample Output

abcdefg
weeeipwnnoobs~~?~?~??@#!#$%?$^?$%*

Comments


  • -2
    jaywang  commented on Nov. 19, 2022, 4:21 p.m.

    weak test cases, did it with text