CF-Contest-Problem-Scrapper is a JavaScript-based tool designed to scrape contest problems from Codeforces During the Contest. This tool helps users to collect and organize problems from various contests for easy access and analysis.
Pre-Requisites
node && npm
Usage
To use the CF-Contest-Problem-Scrapper, run the following command:
npx cf-contest id <contestId>
Example ~~~~~ npx cf-contest id ~~~~~
Folder Structure for Contest
contest-name/ │ ├── A/ │ ├── input.in │ ├── output.out │ ├── expected.out │ ├── problemstatement.txt │ └── solution.cpp │ ├── B/ │ ├── input.in │ ├── output.out │ ├── expected.out │ ├── problemstatement.txt │ └── solution.cpp │ ├── C/ │ ├── input.in │ ├── output.out │ ├── expected.out │ ├── problemstatement.txt │ └── solution.cpp │ └── ...