https://github.com/coadler/reverse-table-selector
Used to select tables to be graded in Mr. Phelps' AP Stats class
https://github.com/coadler/reverse-table-selector
Last synced: about 2 months ago
JSON representation
Used to select tables to be graded in Mr. Phelps' AP Stats class
- Host: GitHub
- URL: https://github.com/coadler/reverse-table-selector
- Owner: coadler
- License: mit
- Created: 2015-11-04T18:12:01.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-09T17:57:53.000Z (over 9 years ago)
- Last Synced: 2025-05-13T07:18:58.260Z (2 months ago)
- Language: Go
- Size: 1.98 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Reverse-Table-Selector [](https://travis-ci.org/ThyLeader/Reverse-Table-Selector)
Used to select tables to be graded in Mr. Phelps AP Stats classI am currently working on a GUI so it is not handled through terminal
# How it Works
Starts with an array of numbers with a user specified length
`[1, 2, 3, 4, 5, 6, 7, 8]`
A random number is generated 1 -> array length
`4`
The number 4 is now replaced with an X
`[1, 2, 3, x, 5, 6, 7, 8]`
If the number 4 is generated again, it becomes a number again
`[1, 2, 3, 4, 5, 6, 7, 8]`
The game continues until there is only one number left that is not an X
`[x, x, x, x, 5, x, x, x]`
# Upcoming
1: Add a GUI
2: Fix the channels in the goroutine (they work but are not optimal)
3: Anything else suggested