Skip to content

Instantly share code, notes, and snippets.

View encorehu's full-sized avatar
🎯
Focusing Nim language

Encore Hu encorehu

🎯
Focusing Nim language
View GitHub Profile
@encorehu
encorehu / gist:5090139
Created March 5, 2013 12:57
suffixtree.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'Encore Hu, <huyoo353@126.com>'
class Suffix(object):
def __init__(self, start, end):
self.start = start
self.end = end