Skip to content

Instantly share code, notes, and snippets.

View mi-yu's full-sized avatar

Michael Yu mi-yu

  • Magic Eden
  • San Francisco
View GitHub Profile

Keybase proof

I hereby claim:

  • I am mi-yu on github.
  • I am miyu0 (https://keybase.io/miyu0) on keybase.
  • I have a public key ASATD8CZFeNySJnHpHBxOs8V3j59Dx5CZ9FV7kU0lHdjJgo

To claim this, I am signing this object:

import java.io.*;
import java.util.*;
class TeamMaker {
public static void main (String args[]) throws IOException {
BufferedReader f = new BufferedReader(new FileReader("data.tsv")); // name your file whatever (needs to be tsv)
f.readLine();
TreeMap<String,ArrayList<String>> eventsMap = new TreeMap();
String temp;
while ((temp = f.readLine()) != null) {