All set of challenges are the sub set difficulty which would be faced while doing other challenges
More you complete the challenges, more you will be able to do
Make a folder of your Github username and complete the challenges given below
Wish to give a challenge? sure just make an edit, and throw the pull request ;)
Write a Code that accepts String in a format like "My name is someone", then it has to be formatted into "MyNameIsSomeone" and then back to original
Write program that accepts the inversemod of num to inversemodnum -> num inverse% inversemodnum = ?
Write a Code that scrambles the words by following the rules below:
-
Words less than or equal to 3 characters need not be scrambled.
-
Don't scramble first and last char, so
Scramblingcan becomeSrbmnacilgorSrbmnailcgorSnmbracilg, i.e. letters except first and last can be scrambled in any order. -
Punctuation at the end of the word to be maintained as is i.e.
"Surprising,"could become"Spsirnirug,"but not"Spsirn,irug". -
Following punctuation marks are to be supported - comma, question mark, full stop, semicolon, exclamation.
-
Do this for a file and maintain sequences of lines.
Reading from a CSV file and printing all colums as rows.
Given Strings of code equations like, "45 >= 67 56==70 30 <= 78" and output should be binary "0 0 1" { input is seprated with space and output should be on new line}
Write a program that converts text written numbers (Ex: Thirty-One) to its numeric form (Ex: 31) and perform the opposite. Input: 31 Output: (Thirty-One)
Challenge Awaits