LeetCodeAnimation/anima/__init__.py
2020-04-17 23:26:19 +08:00

11 lines
179 B
Python

from anima.create import create_solution
class Anima:
"""
LeetCode Animation Manager
"""
def new(self, id: str, title: str):
create_solution(id, title)