Skip to content

Instantly share code, notes, and snippets.

View ngoctnq's full-sized avatar
💤
permanently bored

Ngoc N. Tran ngoctnq

💤
permanently bored
View GitHub Profile
@ngoctnq
ngoctnq / hanoi_love.py
Created November 2, 2021 10:15
Hanoi Love interpreter.
'''
I couldn't find a modern interpreter for Hanoi Love so here goes.
@author Ngoc N. Tran (@ngoctnq)
@created November 2nd, 2021
'''
from typing import Union
def run_hl(instructions: str, stdin: Union[list, bytes] = []):
'''