Improve Python code for importing modules.

This commit is contained in:
krahets
2023-10-19 16:21:51 +08:00
parent 1e49574332
commit 5aacf2dfe0
32 changed files with 114 additions and 95 deletions

View File

@ -4,11 +4,6 @@ Created Time: 2023-04-15
Author: Krahets (krahets@163.com)
"""
import sys, os.path as osp
sys.path.append(osp.dirname(osp.dirname(osp.abspath(__file__))))
from modules import *
def backtrack(
state: list[int], choices: list[int], selected: list[bool], res: list[list[int]]