ASP refactoring, sequence generation via clusterization

This commit is contained in:
Mark Voltov 2024-02-02 14:22:21 +00:00 committed by Igor Brylyov
parent d2ab856d64
commit fd59ab9e26
45 changed files with 1579 additions and 1267 deletions

View file

@ -0,0 +1,11 @@
from extensions.list import CoreList
class CheckSequenceUsecase(list):
def isCorrectByParts(self, checkList) -> bool:
parts = self[len(self) - 1]
for part in parts:
part = str(part)
part = part[1:-1]
return CoreList(self).equal(checkList)