13 lines
172 B
Python
13 lines
172 B
Python
from __future__ import annotations
|
|
|
|
from typing import List
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Sort:
|
|
empty: bool
|
|
sorted: bool
|
|
unsorted: bool
|