CodeTT3
An IDE-like VSCode extension for competitive programming.
Features
- Run C++ code instantly
- Custom config via
.codett3/config.json
- Lightweight competitive programming workflow
Usage
- Open a workspace
- Create
.codett3/config.json
- Press
Ctrl + Shift + P → CodeTT3: Run
Example config
{
"cmd": "g++ ${file} -o ${fileBasenameNoExtension} && ./${fileBasenameNoExtension}"
}
| |