Skip to content

Commit ff1a066

Browse files
committed
first commit
0 parents  commit ff1a066

File tree

3 files changed

+321
-0
lines changed

3 files changed

+321
-0
lines changed

.gitignore

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Ignore docs files
2+
_gh_pages
3+
.ruby-version
4+
5+
# Numerous always-ignore extensions
6+
*.diff
7+
*.err
8+
*.orig
9+
*.log
10+
*.rej
11+
*.swo
12+
*.swp
13+
*.zip
14+
*.vi
15+
*~
16+
*.~lock*
17+
.~lock*
18+
19+
# OS or Editor folders
20+
.DS_Store
21+
._*
22+
Thumbs.db
23+
.cache
24+
.project
25+
.settings
26+
.tmproj
27+
*.esproj
28+
nbproject
29+
*.sublime-project
30+
*.sublime-workspace
31+
.idea
32+
33+
# Komodo
34+
*.komodoproject
35+
.komodotools
36+
37+
# grunt-html-validation
38+
validation-status.json
39+
validation-report.json
40+
41+
# Folders to ignore
42+
node_modules
43+
44+
# Ignore all logfiles and tempfiles.
45+
!/log/.keep
46+
/tmp
47+
/.gems
48+
49+
testing-code-3.js
50+
testing-scribling-code.js
51+
testing-code-1.js
52+
testing-4.js
53+
Cracking-The-Coding-Interview-Note-Gitignore-IT.odt

package-lock.json

Lines changed: 248 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "algorithm-in-js",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "Readme.md",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"author": "Rohan Paul",
10+
"keywords": [
11+
"interview",
12+
"coding",
13+
"algorithms"
14+
],
15+
"license": "ISC",
16+
"devDependencies": {
17+
"chai": "^4.1.2",
18+
"mocha": "^4.0.1"
19+
}
20+
}

0 commit comments

Comments
 (0)