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 337
  • Linux 273
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 Aug 3 Aug 2 Aug 1 Jul 31 Jul 30 Jul 29 Jul 28 Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9
Windows 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 2 0 1 0 0 3 0 0 0 0 1 0 2 0 1 0 0 0 0 0 0 0
Mac 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 4 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1

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.