This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
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] = []): | |
''' |