Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 13 days 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-09T17:57:53.000Z (about 9 years ago)
- Last Synced: 2024-12-23T16:44:34.055Z (16 days ago)
- Language: Go
- Size: 1.98 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Reverse-Table-Selector [![Build Status](https://travis-ci.org/ThyLeader/Reverse-Table-Selector.svg?branch=master)](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