#strings
Read more stories on Hashnode
Articles with this tag
Topic: Strings 1) Reverse Words in StringMedium Input: s = "a good example" Output: "example good a" Explanation: You need to reduce multiple...
Topic: Strings 1) Length of last wordEasy Input: s = " fly me to the moon " Output: 4 Explanation: The last word is "moon" with length...
Topic: Strings Questions Successfully Completed: 1 1) Repeating Character - First Appearance LeftmostEasy QuestionInput: S = geeksforgeeks Output: g...
Topic: Strings Questions Successfully Completed: 1 1) Panagram CheckingEasy QuestionInput: S = Bawds jog, flick quartz, vex nymph Output: 1...
Topic: Strings Questions Successfully Completed: 1 1) Reverse words in a given stringEasy QuestionInput: S = i.like.this.program.very.much Output:...
Topic: Strings Questions Successfully Completed: 1 1) Maximum Occuring CharacterEasy Maximum Occuring Character Time Complexity : O(N) Space...