This is a workspace for solving the programming challenge provided in the question
directory.
.
├── question/ # Contains the problem description and related materials
├── solution/ # Your solution code and related files should be here
│ ├── main.py # Main execution file for the solution
│ ├── result.txt # Final output of the solution
│ ├── tool/ # Available tools and utilities for you to use
│ ├── tmp/ # For temporary files during problem solving
│ └── ... # Additional files and directories as needed
The solution
directory is your workspace. You can create any additional directories and files as needed while solving the problem.
- Read and analyze the problem in the
question
directory - Utilize available tools in
solution/tool
directory - Implement your solution in the
solution
directory - Use
solution/main.py
as the entry point to execute the solution - Always output the final result to
solution/result.txt
- Store any temporary files in
solution/tmp