Skip to content

Commit

Permalink
Refactor clash of code module and add get_question, play_test_cases a…
Browse files Browse the repository at this point in the history
…nd submit
  • Loading branch information
takos22 committed Feb 22, 2024
1 parent a4f585f commit b25898a
Show file tree
Hide file tree
Showing 6 changed files with 536 additions and 160 deletions.
13 changes: 13 additions & 0 deletions codingame/clash_of_code/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from .clash_of_code import ClashOfCode, Solution, TestCaseResult
from .player import Player
from .question import Contribution, Question, TestCase

__all__ = (
"ClashOfCode",
"Contribution",
"Player",
"Question",
"TestCase",
"TestCaseResult",
"Solution",
)
Loading

0 comments on commit b25898a

Please sign in to comment.