Easy CP
A Sublime Text 3 plugin for parsing and running sample testcases with ease!
Details
Installs
- Total 151
- Win 151
- Mac 0
- Linux 0
Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
EasyCP
EasyCP is a plugin for ST3, which can parse the inputted url and scrap out the sample input and sample output testcases. Further it can run your code on those sample inputs and compares the output so obtained with the given sample output!
EascyCP allows you to parse all tasks from the problemset at once, so in 2 clicks you can get all tests from the contest!
Requirements
- Languages supported: Java, C++, Python 3
- Websites supported: Codeforces
Usage
First of all, go to Preferences > Package Settings > EasyCP settings
and edit compile and run commands.
- Go to
Easy CP -> Parse Test-cases
in the menu bar, to scrap sample testcases. - Enter the url in the “Input URL” box at the bottom of the screen.
- Go to
Easy CP -> Compile
in the menu bar to compile your code. - Go to
Easy CP -> Run
in the menu bar to execute your code on the sample testcases.
NOTE:
If you parse only one task, test cases will be associated with the current file name, for example if file name is
Task_B
, then test cases folder will be calledEasyCP_Task_B
.If you parse the entire problemset, then test cases will be created with file names equal to the letters of the problems, so you have to name your files accordingly, for example,
A.py
,E.cpp
,D.java
(notTesk_E.py
orf.cpp
).However, you can always change names simply by renaming the EasyCP folder, for example, changing
EasyCP_A
=>EasyCP_mytask
andA.cpp
=>mytask.cp
will work as well.