Strings Challenges | C++ Placement
String Challenges Challenge 1 UpperCase-LowerCase interconversion Given a string s with both uppercase and lowercase latin characters (‘a’ - ‘z’). Your task is convert whole string into 1. Lower Case 2. Upper Case Base idea: ‘a’ - ‘A’ = 32 1. Lowercase to UpperCase Approach 1. Iterate over the string s and if s[i] is a lower case character, then update s[i] -= 32 2. UpperCase to LowerCase Approach 1. Iterate over the string s and if s[i] is a upper case character, then update s[i] +=32 Code: Challenge 2 Form the biggest number of integers, our task is to form the biggest number out of those numbers in the string. Approach: Sort the string in descending order using inbuilt sort function. Code Challenge 3 Max Frequency s of latin characters, your task is to output the character which has maximum f...