You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. 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
18
-
2. Write a Code that accepts the inversemod of num to inversemodnum -> num inverse% inversemodnum = ?
19
-
3. Write a Code that scrambles the words by following the rules below:
20
-
a)Words less than or equal to 3 characters need not be scrambled .
21
-
b)Don't scramble first and last char, so Scrambling can become Srbmnacilg or Srbmnailcg or Snmbracilg , i.e. letters except first and last can be scrambled in any order .
22
-
c)Punctuation at the end of the word to be maintained as is i.e. "Surprising," could become "Spsirnirug," but not "Spsirn,irug" .
23
-
d)Following punctuation marks are to be supported - Comma Question mark, Full stop, Semicolon, Exclamation .
24
-
e)Do this for a file and maintain sequences of lines .
25
-
4. Reading from a CSV file and printing all colums as rows.
26
-
5. 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 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
18
+
19
+
### Challenge 2
20
+
Write program that accepts the inversemod of num to inversemodnum -> num inverse% inversemodnum = ?
21
+
22
+
### Challenge 3
23
+
Write a Code that scrambles the words by following the rules below:
24
+
25
+
* Words less than or equal to 3 characters need not be scrambled.
26
+
27
+
* Don't scramble first and last char, so `Scrambling` can become `Srbmnacilg` or `Srbmnailcg` or `Snmbracilg` , i.e. letters except first and last can be scrambled in any order.
28
+
29
+
* Punctuation at the end of the word to be maintained as is i.e. `"Surprising,"` could become `"Spsirnirug,"` but not `"Spsirn,irug"`.
30
+
31
+
* Following punctuation marks are to be supported - comma, question mark, full stop, semicolon, exclamation.
32
+
33
+
* Do this for a file and maintain sequences of lines.
34
+
35
+
36
+
### Challenge 4
37
+
Reading from a CSV file and printing all colums as rows.
38
+
### Challenge 5
39
+
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}
0 commit comments