LeetCodeAnimation/anima/__init__.py

11 lines
179 B
Python
Raw Normal View History

2020-04-17 23:26:19 +08:00
from anima.create import create_solution
class Anima:
"""
LeetCode Animation Manager
"""
def new(self, id: str, title: str):
create_solution(id, title)