mirror of
https://gitee.com/TheAlgorithms/LeetCodeAnimation.git
synced 2024-12-06 15:19:44 +08:00
11 lines
179 B
Python
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)
|