When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

RedBlackTrees's blog

By RedBlackTrees, history, 3 years ago, In English

Hello, everyone. In the question cAPS lOCK, the judge said the wrong answer for test case number 3, i.e, 'cAPSlOCK'. Now, from reading the question and the following conditions being given:

"Let's consider that a word has been typed with the Caps lock key accidentally switched on, if:

a) either it only contains uppercase letters; b) or all letters except for the first one are uppercase."

taking the above conditions into consideration, 'cAPSlOCK' should change to 'CapsLock' as apart from 'c' not all the words are lowercase, i.e, 'l'.

My submission number is #123967359 and it can also be found at https://pastebin.com/6EazS8Ph. So, my code converts 'cAPSlOCK' to 'CapsLock', however the desired answer is 'cAPSlOCK'

I highly appreciate anyone's input here.

  • Vote: I like it
  • -17
  • Vote: I do not like it

| Write comment?