Skip to content

Instantly share code, notes, and snippets.

View InjuSmol's full-sized avatar
👾

V Smol InjuSmol

👾
View GitHub Profile
@ZacBlanco
ZacBlanco / BTree.java
Created October 24, 2017 17:01
Binary Tree Solution with Generics
import java.util.ArrayList;
public class BTree<T extends Comparable<T>> {
public static void main (String[] args) {
printScoreReport(test());
// You can write more code to test your methods under here.
}