I hereby claim:
- I am mozey on github.
- I am mozey (https://keybase.io/mozey) on keybase.
- I have a public key whose fingerprint is 8B13 92AF 8831 EF82 709D AB48 3716 E9C2 3CAB DA0E
To claim this, I am signing this object:
| package main | |
| import ( | |
| "fmt" | |
| "github.com/labstack/echo/middleware" | |
| "net/http" | |
| "github.com/labstack/echo" | |
| ) |
I hereby claim:
To claim this, I am signing this object:
| # An object-oriented implementation of a "Trie" in Python | |
| # https://gist.github.com/mozey/2604f7ac08226f774bbc2fab57f0c67e | |
| class Node: | |
| def __init__(self, label=None, data=None): | |
| self.label = label | |
| self.data = data | |
| self.children = dict() |
| #!/usr/bin/env python3 | |
| import sys | |
| import logging | |
| import json | |
| import os | |
| import hashlib | |
| import collections | |
| import copy |