ai-deception-openenv / tasks /test_tasks.py
spidey121's picture
fix round 1
5b93dcc
Raw
History Blame Contribute Delete
198 Bytes
from tasks.easy.task import run as easy
from tasks.medium.task import run as medium
from tasks.hard.task import run as hard
print("Easy:", easy())
print("Medium:", medium())
print("Hard:", hard())