Initial Commit

This commit is contained in:
2018-10-15 12:47:14 -06:00
commit 0c531ffff9
55 changed files with 7285 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
/* pair up a string and
an int,
used for holes and info
*/
public class StringIntPair {
public String s;
public int x;
public StringIntPair( String sIn, int xIn ) {
s = sIn;
x = xIn;
}
public String toString() {
return "[" + s + "," + x + "]";
}
}