CppFastOlympicCoding
Tools for competitive programming for Sublime Text 3 & 4
Details
Installs
- Total 49K
- Win 33K
- Mac 9K
- Linux 8K
Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 15 | 12 | 8 | 13 | 11 | 13 | 7 | 16 | 10 | 6 | 19 | 10 | 16 | 14 | 11 | 13 | 13 | 9 | 9 | 22 | 13 | 12 | 16 | 8 | 16 | 12 | 14 | 12 | 8 | 14 | 10 | 12 | 14 | 13 | 24 | 9 | 14 | 13 | 11 | 10 | 11 | 14 | 11 | 10 | 11 | 10 |
Mac | 1 | 5 | 4 | 5 | 7 | 6 | 4 | 3 | 7 | 2 | 2 | 11 | 4 | 4 | 10 | 2 | 3 | 8 | 4 | 2 | 5 | 3 | 4 | 2 | 2 | 2 | 6 | 5 | 5 | 6 | 4 | 5 | 8 | 3 | 5 | 2 | 1 | 7 | 1 | 4 | 7 | 4 | 3 | 5 | 3 | 2 |
Linux | 2 | 1 | 4 | 3 | 2 | 2 | 3 | 7 | 2 | 4 | 6 | 2 | 2 | 6 | 0 | 2 | 0 | 1 | 2 | 4 | 4 | 4 | 3 | 1 | 1 | 4 | 3 | 1 | 2 | 2 | 3 | 2 | 3 | 2 | 3 | 4 | 4 | 4 | 7 | 1 | 0 | 2 | 0 | 2 | 2 | 3 |
Readme
- Source
- raw.githubusercontent.com
Fast Olympic Coding plugin for Sublime Text 3 & 4
Installation
- Install via Package Control
- Install manually:
download plugin into packages (Preferences — Browse packages...
)
Warning! rename plugin folder to FastOlympicCoding
TestManager
TestManager Keybindings
- ctrl+b (OSX) ctrl+alt+b (Linux + Win) compile and run
- ctrl+enter new test
- ctrl+c (OSX) ctrl+x (Linux + Win) kill process
- ctrl+shift+b (OSX) run with debugger
- ctrl+d delete test
- ctrl+super+up/ctrl+super+down (OSX) ctrl+shift+up/ctrl+shift+down (Linux + Win) swap tests
- cmd+k, cmd+p (OSX) ctrl+k, ctrl+p (Linux + Win) close/open right panel
Settings
- To edit settings
- press cmd+shift+p (OSX) ctrl+shift+p (Linux + Win) and type
FastOlympicCoding: Open Settings
- or
Preferences — Package Settings — FastOlympicCoding
- press cmd+shift+p (OSX) ctrl+shift+p (Linux + Win) and type
StressTesting
- To stress test a solution, you need to implement the three following files:
<name>.cpp
- program that works incorrect<name>__Good.cpp
- program that works correct<name>__Generator.cpp
- program that generates tests, you can read a seed for a random generator in the input
- Type
FastOlympicCoding: Make Stress
in the command palette to run andFastOlympicCoding: Stop Stress
to stop stress testing
ClassCompletion
- Type aliases to substitute them with data types
- Customize aliases in the settings file
CppLint
- Error highlighting works in real-time
- Specify custom compile command in the settings file
Debugger
- debugger only for OSX
- ctrl+shift+b to run with debugger
- point the cursor on a variable to see its value
- to select a stack frame (type
FastOlympicCoding: Select Frame
in the command palette) - the only one dependency is xcode (you can install it with
xcode-select --install
)