Skip to content

Commit 6de8fb3

Browse files
Update README.md
1 parent 67f3435 commit 6de8fb3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33

44
**Challenge Questions :** This folder contains the challenge question which you might want to do.
55

6+
| Challenge | Description |
7+
| :---: | --- |
8+
|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 |
9+
|2| Write program that accepts the inversemod of num to inversemodnum -> num inverse% inversemodnum = ? |
10+
|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>|
11+
|4|Reading from a CSV file and printing all colums as rows.|
12+
|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}|
13+
|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)|
14+
|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 |
15+
| |`###~###`|
16+
| |`##~~~##`|
17+
| |`#~~~~~#`|
18+
| |`~~~~~~~`|
19+
| |`#~~~~~#`|
20+
| |`##~~~##`|
21+
| |`###~###`|
22+
|8|***Challenge Awaits***|
23+
624
**Ciphers :** This folder contains the encryption and Decryption algorithms.
725

826
**Cycle's :** These folders are for specific question set, ranging from easy to hard.

0 commit comments

Comments
 (0)