Skip to content

Commit 03dcec1

Browse files
Update Readme.md
1 parent 41b154d commit 03dcec1

File tree

1 file changed

+31
-19
lines changed

1 file changed

+31
-19
lines changed

Challenge questions/Readme.md

+31-19
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
# Python_Practice
1+
# Challenges
22

3-
## Challenges
3+
**All set of challenges are the sub set difficulty which would be faced while doing other challenges**
44

5-
**All set of Challenges are the sub set Difficulty which would be faced while doing other challenges**
6-
7-
**More you complete the challenges, More you will be able to do**
5+
**More you complete the challenges, more you will be able to do**
86

97
### Note:
108
Make a Folder of your Name and complete the Challenges given below
@@ -13,17 +11,31 @@ Wish to give a challenge? sure just make an edit, and throw the pull request ;)
1311

1412
---------------------------------------------------------------------------------------------------------------------------------------
1513

16-
## Challenge:
17-
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}
27-
6. ***Challenge Awaits***
28-
7. ***Challenge Awaits***
29-
---------------------------------------------------------------------------------------------------------------------------------------
14+
## Challenges:
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+
***Challenge Awaits***

0 commit comments

Comments
 (0)