Skip to content

Instantly share code, notes, and snippets.

View gimballock's full-sized avatar

Eric Price gimballock

View GitHub Profile
I'm verifying ownership of priceeric1981@gmail.com at EarnCarrot.
@gimballock
gimballock / iterative in-order traversal
Last active December 10, 2015 22:51
Different implementations of iterative in-order traversal of a binary search tree
class BNode(object):
def __init__(self, value):
self.value = value
self.left = None
self.right = None
self.visited = False
def insert_left(self, left):
self.left = left
### Keybase proof
I hereby claim:
* I am gimballock on github.
* I am eric_dualspark (https://keybase.io/eric_dualspark) on keybase.
* I have a public key whose fingerprint is EC8A D47C 7E3F BF55 03CC 0B5F 5A05 BFE4 C137 BCB2
To claim this, I am signing this object:
@gimballock
gimballock / affirmation
Created May 23, 2014 14:30
MuleSoft Contributor Agreement Acceptance by Eric Price
I, Eric Price, have read and do accept the MuleSoft Contributor Agreement
at http://www.mulesoft.org/legal/contributor-agreement.html
Accepted on Fri May 23 2014 07:30:28 GMT-0700 (PDT)