Skip to content

Instantly share code, notes, and snippets.

View ethanmad's full-sized avatar
🦷

Ethan Madison ethanmad

🦷
View GitHub Profile
@ethanmad
ethanmad / keybase.md
Created July 30, 2015 22:37
keybase.md

Keybase proof

I hereby claim:

  • I am ethanmad on github.
  • I am ethanmad (https://keybase.io/ethanmad) on keybase.
  • I have a public key whose fingerprint is 924C 82CC 9285 FC65 59F9 1117 E0F5 7A43 64D0 4081

To claim this, I am signing this object:

@ethanmad
ethanmad / gist:11e9ef417030fe58a8ff
Last active August 29, 2015 14:20
OneName verification
Verifying I am +ethanmad on my passcard. https://onename.com/ethanmad
public class MyRecursiveTreeSet {
//PUBLIC METHODS
// Returns true if this BST contains value; otherwise returns false.
// Calls private helper method: contains(TreeNode root, Object value) to
// start recursion.
public boolean contains(Comparable value) {
return contains(this.getRoot(), value);
}
public class MyRecursiveTreeSet {
//PUBLIC METHODS
// Returns true if this BST contains value; otherwise returns false.
// Calls private helper method: contains(TreeNode root, Object value) to
// start recursion.
public boolean contains(Comparable value) {
return contains(this.getRoot(), value);
}