Skip to content

adding table for issue #22 #26

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 18 additions & 40 deletions Challenge questions/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,43 +13,21 @@ Wish to give a challenge? sure just make an edit, and throw the pull request ;)

## Challenges:

### Challenge 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

### Challenge 2
Write program that accepts the inversemod of num to inversemodnum -> num inverse% inversemodnum = ?

### Challenge 3
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 `Scrambling` can become `Srbmnacilg` or `Srbmnailcg` or `Snmbracilg` , 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.


### Challenge 4
Reading from a CSV file and printing all colums as rows.
### Challenge 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}
### Challenge 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)
### Challenge 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
```
###~###
##~~~##
#~~~~~#
~~~~~~~
#~~~~~#
##~~~##
###~###
```
### Challenge 8
***Challenge Awaits***
| Challenge | Description |
| :---: | --- |
|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 |
|2| Write program that accepts the inversemod of num to inversemodnum -> num inverse% inversemodnum = ? |
|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>|
|4|Reading from a CSV file and printing all colums as rows.|
|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}|
|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)|
|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 |
| |`###~###`|
| |`##~~~##`|
| |`#~~~~~#`|
| |`~~~~~~~`|
| |`#~~~~~#`|
| |`##~~~##`|
| |`###~###`|
|8|***Challenge Awaits***|