Problem of the day
You are given a string 'S'. Your task is to find an array of all possible strings in any order that can be formed by transforming every letter individually to the lowercase or the uppercase.
Note:
1. You can print the array in any order.
2. The string 'S' only contains English alphabets and digits.
1 <= T <= 100
1 <= |S| <= 12
Where |S| denotes the length of string 'S'.
Time Limit: 1 sec.
1
a1b
A1B A1b a1B a1b
These are the four strings that we can get after transforming every letter individually to be lowercase or uppercase.
1
0
0
There is no alphabet in the string, so we get the output same as the input string.