Created
August 23, 2025 14:46
-
-
Save Yugsolanki/2d477cf1b17112af9931b95cdcc9162d to your computer and use it in GitHub Desktop.
C++ file runner with utilities.cpp for DSA practice
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "tasks": [ | |
| { | |
| "label": "Build and Run and Clean", | |
| "type": "shell", | |
| "command": "g++ ${file} utilities.cpp -o program ; .\\program ; Get-ChildItem -Path . -Filter *.exe -Recurse | Remove-Item", | |
| "group": { | |
| "kind": "build", | |
| "isDefault": true | |
| }, | |
| "problemMatcher": [ | |
| "$gcc" | |
| ] | |
| } | |
| ], | |
| "version": "2.0.0" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment