This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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 { |