Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5ce9398
Bracket Balance
thsubaku9 Oct 7, 2020
050f089
README update
thsubaku9 Oct 7, 2020
1801f4b
README update
thsubaku9 Oct 7, 2020
96784bd
README update
thsubaku9 Oct 7, 2020
0b0d182
Bloom Filter Update!
thsubaku9 Oct 8, 2020
c1f956d
readme changes
thsubaku9 Oct 8, 2020
cd3a235
Merge branch 'main' into work-branch
thsubaku9 Oct 8, 2020
a6b376d
Merge branch 'main' of https://github.com/thsubaku9/string-dsa into w…
thsubaku9 Oct 8, 2020
8549287
spacing
thsubaku9 Oct 8, 2020
2ada1ad
Custom string sort supported
thsubaku9 Oct 10, 2020
5453837
Custom string sort supported
thsubaku9 Oct 10, 2020
b082d22
Custom string sort supported
thsubaku9 Oct 10, 2020
5eccfad
Custom string sort supported
thsubaku9 Oct 10, 2020
247e354
Merge branch 'main' of https://github.com/thsubaku9/string-dsa into w…
thsubaku9 Oct 10, 2020
10f4b66
sorted implemented
thsubaku9 Oct 16, 2020
a6c301b
webpack config
thsubaku9 Oct 17, 2020
11084bd
Edit Distance and 0.3.0 changes
thsubaku9 Oct 19, 2020
2bd2264
Merge branch 'main' into work-branch
thsubaku9 Oct 19, 2020
db92912
Merge branch 'main' into work-branch
thsubaku9 Oct 28, 2020
c8be77f
temp
thsubaku9 Oct 29, 2020
ac3a413
Trie almost done
thsubaku9 Oct 29, 2020
4c66325
README enhancement
thsubaku9 Oct 29, 2020
55fd012
Trie done
thsubaku9 Oct 30, 2020
0790164
tried and tested
thsubaku9 Oct 30, 2020
6cac38f
Trie enhancements
thsubaku9 Nov 4, 2020
2df3a0a
Merge branch 'main' into work-branch
thsubaku9 Nov 4, 2020
ca54462
LCS supported
thsubaku9 Nov 8, 2020
0bd5276
Merge branch 'main' into work-branch
thsubaku9 Nov 8, 2020
d6f55e7
few minor fixes, started linting work
thsubaku9 Nov 10, 2020
7fb45da
Merge branch 'main' into work-branch
thsubaku9 Nov 10, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"node": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"camelcase": ["off"],
"eqeqeq": ["off"],
"linebreak-style": ["error", "windows"],
"max-len": ["warn"],
"no-plusplus":["off"]
}
}
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ install:
- npm install

script:
#- npm run lint
- npm test
- npm run prod
- npm run test:coveralls


Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ List of supported Data Structures and Algorithms are :
- [Dice Coefficient](https://github.com/thsubaku9/string-dsa/blob/main/src/dice_coeff.js)
- [Edit/Levenshtein Distance](https://github.com/thsubaku9/string-dsa/blob/main/src/edit_distance.js)
- [Knuth Morris Pratt](https://github.com/thsubaku9/string-dsa/blob/main/src/search/kmp.js)
- [Longest Common Substring](https://github.com/thsubaku9/string-dsa/blob/main/src/lcs.js)
- [Rabin Karp](https://github.com/thsubaku9/string-dsa/blob/main/src/search/rabin_karp.js)
- [Trie](https://github.com/thsubaku9/string-dsa/blob/main/src/Trie.js)
## Utilization
Expand Down
Loading