Easy CP
A Sublime Text 3 plugin for parsing and running sample testcases with ease!
Details
Installs
- Total 145
- Win 145
- Mac 0
- Linux 0
Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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 | 1 | 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.