combination based bundle solving

This commit is contained in:
spushy
2022-02-09 01:13:49 -05:00
parent 744abbb7b8
commit 8ce5e6e540
4 changed files with 139 additions and 74 deletions

View File

@ -1,6 +1,10 @@
from pydantic import BaseModel
from typing import List
from models.item import Item
class Bundle(BaseModel):
id: int
count: int
items: List[Item]
type: str