https://github.com/chinmaykaitade/dsa-cp-visual-studio-code-setup
Visual Studio Code Setup for DSA & Computer Programming
https://github.com/chinmaykaitade/dsa-cp-visual-studio-code-setup
cpp customization dsa vscode
Last synced: 12 months ago
JSON representation
Visual Studio Code Setup for DSA & Computer Programming
- Host: GitHub
- URL: https://github.com/chinmaykaitade/dsa-cp-visual-studio-code-setup
- Owner: ChinmayKaitade
- Created: 2024-02-08T06:34:29.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-12T05:46:28.000Z (about 2 years ago)
- Last Synced: 2025-03-28T23:11:15.416Z (about 1 year ago)
- Topics: cpp, customization, dsa, vscode
- Language: JavaScript
- Homepage:
- Size: 210 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# :hammer_and_wrench: Setup for DSA and CP in Visual Studio Code:
## :desktop_computer: Open Visual Studio Code in your PC/Laptop Now Create JavaScript file in Code folder
### Creating File in Code Folder as Follows
```JavaScript
demo.js
```
```
input.txt
```
```
output.txt
```
### Setting Up tasks.json File
Step 1 - Go to Terminal Click on Configure Tasks
Step 2 - Select Create a tasks.json file from template and then Click on Others
Step 3 - Copy the Code given below and Paste it into tasks.json
```
{
"version": "2.0.0",
"tasks": [
{
"label": "Run JavaScript with Input/Output",
"type": "shell",
"command": "node",
"args": ["${file}", "<", "input.txt", ">", "output.txt"],
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
},
"options": {
"cwd": "${workspaceFolder}"
}
}
]
}
```
# Now For Setting Up Layout go to the Steps given Below
## Step 1

## Step 2

## Step 3

## Step 4

## Step 5

## Step 6

## Step 7

## Step 8

:heart: Follow Me For More Projects [GitHub](https://github.com/ChinmayKaitade) | [LinkedIn](https://www.linkedin.com/in/chinmay-sharad-kaitade) | [Email](chinmaykaitade123@gmail.com)