Skip to content

Instantly share code, notes, and snippets.

@lawrancej
lawrancej / gist:6995878
Created October 15, 2013 18:04
AP CS Policies

Computer Science Advanced Credit Policies

A quick and dirty sample of 11 Massachusetts schools mostly in the Boston area.

Policies by school:

  • Apply credit toward a free elective or CS elective (Boston College, Northeastern, Tufts, UMass Dartmouth)
  • Apply credit toward introductory courses in Java (Boston University, UMass Amherst, UMass Boston, UMass Dartmouth)
  • Apply credit toward introductory courses in other languages (UMass Lowell, WPI)
@lawrancej
lawrancej / gist:6995867
Created October 15, 2013 18:03
AP CS stuff
Computer Science Advanced Credit Policies
-----------------------------------------
A quick and dirty sample of 11 Massachusetts schools mostly in the Boston area.
Policies by school:
* Apply credit toward a free elective or CS elective (Boston College, Northeastern, Tufts, UMass Dartmouth)
* Apply credit toward introductory courses in Java (Boston University, UMass Amherst, UMass Boston, UMass Dartmouth)
* Apply credit toward introductory courses in other languages (UMass Lowell, WPI)
@lawrancej
lawrancej / BF.java
Created June 12, 2012 13:03
Brainf**
import java.io.IOException;
import java.util.LinkedList;
public class BF {
private interface Visitor {
void visit (Loop loop);
void visit (Left left);
void visit (Right right);
void visit (Increment increment);
void visit (Decrement decrement);
@lawrancej
lawrancej / Lab2.java
Created June 5, 2012 12:45
Lab2 (from last year)
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Map;
import java.util.Set;
public class Lab2 {
public interface Regex {
<T> T accept (Visitor<T> v);
}