Elite-Trade-Sentry / tasks /__init__.py
SamaKool's picture
fix: added the template repo structure of tasks/ and grader/
bf16a34
raw
history blame contribute delete
431 Bytes
"""Task definitions for the HFT Auditor (Elite-Trade-Sentry) environment.
Exports
-------
task1_easy — Anomaly Detection Easy (5 steps, EASY difficulty)
task2_medium — Anomaly Detection Medium (10 steps, MEDIUM difficulty)
task3_hard — Anomaly Detection Hard (20 steps, HARD difficulty)
"""
from tasks import task1_easy, task2_medium, task3_hard
__all__ = ["task1_easy", "task2_medium", "task3_hard"]