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
Copy file name to clipboardexpand all lines: Challenge questions/Readme.md
+18-40
Original file line number
Diff line number
Diff line change
@@ -13,43 +13,21 @@ Wish to give a challenge? sure just make an edit, and throw the pull request ;)
13
13
14
14
## Challenges:
15
15
16
-
### Challenge 1
17
-
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}
40
-
### Challenge 6
41
-
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)
42
-
### Challenge 7
43
-
WAP that inputs the length and breadth of a sheet, this sheet should be made of a diamond design with '~' and the rest of the corners should be filled with '#'
44
-
eg- size=7X7
45
-
```
46
-
###~###
47
-
##~~~##
48
-
#~~~~~#
49
-
~~~~~~~
50
-
#~~~~~#
51
-
##~~~##
52
-
###~###
53
-
```
54
-
### Challenge 8
55
-
***Challenge Awaits***
16
+
| Challenge | Description |
17
+
| :---: | --- |
18
+
|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 |
19
+
|2| Write program that accepts the inversemod of num to inversemodnum -> num inverse% inversemodnum = ? |
20
+
|3 | Write a Code that scrambles the words by following the rules below: <ul><li>Words less than or equal to 3 characters need not be scrambled.</li><li>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.</li><li>Punctuation at the end of the word to be maintained as is i.e. `"Surprising,"` could become `"Spsirnirug,"` but not `"Spsirn,irug"`.</li><li>Following punctuation marks are to be supported - comma, question mark, full stop, semicolon, exclamation.</li><li>Do this for a file and maintain sequences of lines.</li></ul>|
21
+
|4|Reading from a CSV file and printing all colums as rows.|
22
+
|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}|
23
+
|6|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)|
24
+
|7|WAP that inputs the length and breadth of a sheet, this sheet should be made of a diamond design with '~' and the rest of the corners should be filled with '#' eg- size=7X7 |
0 commit comments