A repository to contain all my leetcode submissions
- VS-Code
- VS-Code extensions
- jeff-hykin.better-cpp-syntax
- ms-vscode.cpptools-extension-pack
- EditorConfig.EditorConfig
- mingw-64
- Clang
mkdir build
cd build
g++ \path\to\file.cc -o file.exe
.\file.exe
/usr/bin/clang++ -std=c++17 -stdlib=libc++ -g /path/to/file.cc -o file
./file
- In VSCode
- Ensure that
build
directoy exists - Select
Run and Debug
- Open the required
cc
file fromproblems
folder - Select either
clang++ mac - Build and debug active file
orgdb win - Build and debug current file