File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Leetcode 75 Notes
2
+ Exercises taken from the Leetcode 75 interview problem compilation. Each exercise folder has the
3
+ following files:
4
+ ``` sh
5
+ $ tree 283-move-zeroes
6
+ 283-move-zeroes # Exercise name
7
+ ├── index.js # Solution implementation
8
+ ├── package.json # Contains execution scripts
9
+ ├── README.md # Problem description
10
+ └── test.js # Test cases implementation
11
+
12
+ ```
2
13
3
14
## ` package.json ` scripts
15
+ You can use the following scripts on each exercise:
4
16
``` json
5
17
{
6
18
// ...
7
19
"scripts" : {
8
- "start" : " node index.js" ,
9
- "debug" : " node --inspect-brk index.js" ,
10
- "test" : " node test.js"
20
+ "start" : " node index.js" , // Starts the program
21
+ "debug" : " node --inspect-brk index.js" , // Starts the program in debug mode
22
+ "test" : " node test.js" // Run the test suite for this exercise
11
23
},
12
24
// ...
13
25
}
You can’t perform that action at this time.
0 commit comments