Skip to content

Instantly share code, notes, and snippets.

@ataipale
ataipale / TicTacToe.Version2
Created February 4, 2015 00:40
Tic Tac Toe for Two Humans
/*Alex Taipale, 2014.02.02
* Tic Tac Toe Game to be played between two humans in the console.
*/
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class TicTacToeGame {
@ataipale
ataipale / TicTacToeGist
Created February 3, 2015 18:10
My TicTacToe game for two humans!
/*Alex Taipale, 2014.02.02
* Tic Tac Toe Game to be played between two humans in the console.
*/
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class TicTacToeGame {
@ataipale
ataipale / TeamMaker Main Class
Created February 2, 2015 20:48
TeamMaker Main Class
/*Alex Taipale, 2014.01.18
Run with Java 1.6 and openCSV-2.3
Built to determine equally matched teams for Ultimate Frisbee Hat Tournaments
from an CSV file giving 4 columns of data in the order: 1. Player Number
2. Rating (1-5) 3. Height (cm) 4. M or F. Done without modifying the original
file. */
import java.io.FileReader;
import java.lang.reflect.Array;
import java.util.ArrayList;