Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 class

I 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