Skip to content

Instantly share code, notes, and snippets.

View rcshubhadeep's full-sized avatar
💭
Creating the future

Shubhadeep Roychowdhury rcshubhadeep

💭
Creating the future
  • Goa
  • 05:08 (UTC +05:30)
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rcshubhadeep
rcshubhadeep / trie.py
Last active June 11, 2022 01:23
trie implementation in Python3
from typing import Tuple
class TrieNode(object):
"""
Our trie node implementation. Very basic. but does the job
"""
def __init__(self, char: str):
self.char = char
@rcshubhadeep
rcshubhadeep / golang_job_queue.md
Created September 30, 2016 14:04 — forked from harlow/golang_job_queue.md
Job queues in Golang