Skip to content

Instantly share code, notes, and snippets.

View pagresham's full-sized avatar

Pierce Gresham pagresham

  • Huntington, Vt
View GitHub Profile
package javaPractice02;
/**
* Squarelotron - Homework 2
* @author piercegresham
*
*/
public class Squarelotron {
int[][] squarelotron;
int size;
@pagresham
pagresham / WhackAMole.ts
Created May 25, 2017 20:31
An adaptation of a Java Assignment into a TS/JS command line program
/**
* This is an effort to reproduce the WhackAMole Class in TS/JS
*/
class WhackAMole {
score: number = 0;
molesLeft: number = 0;
attempts: number;
moleGrid: string[][];
/**