Merge pull request #20 from florinpop17/feature/add-sportsbracket-app

Feature: Add Sports Bracket Generator app specification
pull/22/head
Florin Pop 6 years ago committed by GitHub
commit c7e237a687
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,45 @@
# SportsBracket Generator
**Tier:** 2-Intermediate
Whether your main sport is soccer, baseball, cricket, or competitive
Esports following the progress of your favorite team during tournaments is an
activity enjoyed by many.
Tracking team progress is traditionally done using a horizontal tree diagram
showing all of the initial matches on the lefthand side. At the end of each
match the winner advances to the next round in the tournament along with the
winner of the adjacent match. Columns in the diagram are used to represent
each round and contain one-half of the teams in the adjacent column on the left
and twice as many teams as the adjacent column to the right. The number of
teams in each column decreases from left to right until the last round
(column) contains the final winner in the tournament.
The SportsBracket Generator automates the process of creating this type of chart by
drawing it in a browser window to relieve the user from having to draw it by
hand.
## User Stories
- [ ] User can enter the name of the tournament
- [ ] User can enter the starting and ending dates of the tournament
- [ ] User can enter the number of teams competing in the tournament
- [ ] User can see a warning if either the starting or ending date is
invalid
- [ ] User can see a warning if an odd number of competing teams is entered
## Bonus features
- [ ] User can enter the competing team names for each match
- [ ] User can enter the date for each match
- [ ] User can enter the final score for each match
- [ ] User can expect that this data will persist across sessions
## Useful links and resources
- [Bracket (tournament)](https://en.wikipedia.org/wiki/Bracket_(tournament))
## Example projects
- [Pure CSS & DOM Sports Bracket](https://codepen.io/cbleslie/pen/ZOLLXg)
- [Responsive Sports Bracket](https://codepen.io/MrCaseiro/pen/bxJpwV)

@ -56,6 +56,7 @@ required to complete them.
| [Flashcards App](./Projects/FlashCards-App.md) | Review and test your knowledge through Flash Cards | 2-Intermediate |
| [Markdown Previewer](./Projects/Markdown-Previewer.md) | Preview text formatted in GitHub flavored markdown| 2-Intermediate |
| [Markdown Table Generator](./Projects/Markdown-Table-Generator.md) | Convert a table into Markdown-formatted text | 2-Intermediate |
| [Sports Bracket Generator](./Projects/SportsBracket-App.md) | Generate a sports bracket diagram | 2-Intermediate |
| [String Art](./Projects/String-Art.md) | An animation of moving, colored strings | 2-Intermediate |
| [Timezone Slackbot](./Projects/Timezone-Slackbot.md) | Display Team Timezones | 2-Intermediate |
| [To-Do App](./Projects/To-Do-App.md) | Manage personal to-do tasks | 2-Intermediate |

Loading…
Cancel
Save