Skip to content

Commit

Permalink
Add Day 10 question
Browse files Browse the repository at this point in the history
  • Loading branch information
MadhavBahl committed Jan 1, 2019
1 parent 1dd326e commit bff51c7
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -26,6 +26,7 @@ Read [CONTRIBUTING.md](./CONTRIBUTING.md) for contribution guidelines.
7. [Day 7 -- One Edit Away](./day7/) -- [http://codetoexpress.tech/dc/day7/](http://codetoexpress.tech/dc/day7/)
8. [Day 8 -- Minimum Edit Distance](./day8/) -- [http://codetoexpress.tech/dc/day8/](http://codetoexpress.tech/dc/day8/)
9. [Day 9 -- Smallest Substring Problem](./day9/) -- [http://codetoexpress.tech/dc/day9/](http://codetoexpress.tech/dc/day9/)
10. [Day 10 -- String Permutation Problem](./day10/) -- [http://codetoexpress.tech/dc/day10/](http://codetoexpress.tech/dc/day10/)

## Timeline

Expand Down
1 change: 1 addition & 0 deletions day10/JavaScript/sol.js
@@ -0,0 +1 @@
// To Be Added
29 changes: 29 additions & 0 deletions day10/README.md
@@ -0,0 +1,29 @@
![cover](./cover.png)

# Day 10 -- Smallest Substring Problem

**Question** Find all the permutations of the given string

```
Example:
input:
123
output:
123
132
213
231
312
321
```

![ques](./ques)

## JavaScript Implementation

### [Solution](./sol.js)

```js
// To Be Added
```
Binary file added day10/cover.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added day10/ques.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bff51c7

Please sign in to comment.