ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Competitive​Programming​Parser

Problem test-case parser for Sublime Text editor from various online judges

Details

Installs

  • Total 2K
  • Win 1K
  • Mac 303
  • Linux 244
Jan 25 Jan 24 Jan 23 Jan 22 Jan 21 Jan 20 Jan 19 Jan 18 Jan 17 Jan 16 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
Windows 0 0 0 2 0 1 1 0 1 0 0 1 1 0 1 1 0 1 1 0 0 0 0 1 0 2 0 0 0 1 3 1 3 2 0 2 1 0 0 1 0 2 0 0 1 2
Mac 0 0 0 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 0 0 0 0 2 1 0 0 0
Linux 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 2 1 0 0 1 1 1 1 1 0 0 1 2

Readme

Source
raw.​githubusercontent.​com

Competitve Programming Parser for Sublime Text

This is a Sublime Text package for parsing problem test-cases from various online judges. You can then run your solution against the testcases with the help of CppFastOlympicCoding. The list of supported websites can be found here.

Competitive Programming Parser can:

  • parse testcases for a problem
  • parse a problem : creates file and parses testcases for the problem
  • parse a contest : parses all the problems of a contest

Dependencies

Setup

Usage

1. - For parsing the test-cases for a particular file: Right click anywhere in the file and select CompetitveProgammingParser -> Parse Testcases. Key Binding: ctrl+shift+x
- For parsing a problem: Right click anywhere in the Sublime Text editor and select CompetitveProgammingParser -> Parse Problem. Key Binding: ctrl+shift+y
- For parsing a contest: Right click anywhere in the Sublime Text editor and select CompetitveProgammingParser -> Parse Contest. Key Binding: ctrl+shift+c
2. In the browser, navigate to the problem page and click on the competitive-companion extension's green plus icon.
3. Use CppFastOlympicCoding to run the solution against the parsed testcases.

Some Common Pitfalls

  • Windows users should make sure that tests_file_suffix is set to same value in the settings file of our package and CppFastOlympicCoding. In CppFastOlympicCoding, tests_file_suffix is by default set to :tests. The problem with this is that : is not allowed in filename on windows. Fix is to override it to __tests(which is also the default value of tests_file_suffix in our package.) in the user settings file of CppFastOlympicCoding.