diff --git a/Projects/1-Beginner/Bomber-Number-App.md b/Projects/1-Beginner/Bomber-Number-App.md new file mode 100644 index 00000000..5f93ddae --- /dev/null +++ b/Projects/1-Beginner/Bomber-Number-App.md @@ -0,0 +1,26 @@ +# Bomber Number + +**Tier:** 1-Beginner + +Bomber Number is an application based on the classic Minesweeper. Basically this would be the flow to develop: + +The user must enter 9 numbers other than the one chosen by the system. + +This challenge requires that the developer implementing it follow these +constraints: + +- The system chooses a random number between 0-9 +- Validate that the digits that are entered are not repeated +- Validate that the number of digits entered equals 9 before displaying a Success message. +- Validate that the entered digit is a number. + +## User Stories + +- [ ] User must enter 9 numbers in order or not in one input field +- [ ] If the user enters the number chosen by the system, an end-of-game message is displayed. +- [ ] If the user enters 9 digits other than the one read by the system, a Winner message is displayed. + + +## Useful links and resources + +[Microsoft Minesweeper](https://www.microsoft.com/es-ar/p/minesweeper-original/9p7px702j5nh#activetab=pivot:overviewtab)