Skip to content

Instantly share code, notes, and snippets.

public class MathMatrixTester {
/**
* main method that runs simple test on the MathMatrix class
*
* @param args not used
*/
public static void main(String[] args) {
int small[][] = {{25}};
int elevens[][] = {
from Queue import Queue # Threadsafe queue for threads to use
from collections import Counter # To count stuff for us
import datetime # Because datetime printing is hard
from pprint import pprint
import time # Should be obvious
import subprocess # Used to send notifications on mac
import sys # Get system info
import threading # Should be obvious
import json # Also obvious