Browse Source

Update README.md

content-update
Clément 3 years ago committed by GitHub
parent
commit
1e4904a00d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 32
      subjects/diamon/README.md

32
subjects/diamon/README.md

@ -1,3 +1,33 @@
## 🌟 Diamon
diamon (pyramid + reversed pyramid)
### Instructions
Create a `diamon` function that takes a string and a number as parameters
and return a diamon shape constructed by 2 arguments:
- the characters (as a string) to be repeated
- the size of a side (as a number)
Just like pyramid + a reversed pyramid
### Output example
- `*` character and side of 5 :
```
*
***
*****
*******
*********
*******
*****
***
*
```
> No new line in last line
### Notions
- [nan-academy.github.io/js-training/examples/loops](https://nan-academy.github.io/js-training/examples/loops.js)
- [nan-academy.github.io/js-training/examples/recursion](https://nan-academy.github.io/js-training/examples/recursion.js)

Loading…
Cancel
Save