From cf69d5c86aac09123163b9991ff9ef4b7b25bb00 Mon Sep 17 00:00:00 2001 From: AlonJoshua <52909700+AlonJoshua@users.noreply.github.com> Date: Mon, 9 Mar 2020 18:00:04 +0200 Subject: [PATCH] adding random number generator idea --- .../1-Beginner/Random-Number-Generator.md | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Projects/1-Beginner/Random-Number-Generator.md diff --git a/Projects/1-Beginner/Random-Number-Generator.md b/Projects/1-Beginner/Random-Number-Generator.md new file mode 100644 index 00000000..988b223a --- /dev/null +++ b/Projects/1-Beginner/Random-Number-Generator.md @@ -0,0 +1,28 @@ +# Random-Number-Generator + +**Tier:** 1-Beginner + +Generate a random number between a range of defined minimun and maximun. + +The generator allows the user to use the random property for purposes like games that contains some kind of lottary or for statistics. + +## User Stories + +- [ ] User can define maximun and minimun values for the random number. +- [ ] User can press the generate button to generate random number. + +## Bonus features + +- [ ] User can add option for negative values +- [ ] User can add option for decimal numbers + +## Useful links and resources + +[What's this fuss about true randomness?](https://www.random.org/) + +## Example projects + +Try not to view this until you've developed your own solution: + +- [Example](https://alonjoshua.github.io/random-number-generator/) +- [Project](https://github.com/AlonJoshua/random-number-generator/)