Skip to content

Commit 44f2af0

Browse files
committed
Change username from ManrajGrover to manrajgrover
1 parent 4a36ffc commit 44f2af0

File tree

5 files changed

+39
-39
lines changed

5 files changed

+39
-39
lines changed

.github/CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Contribution Guidelines
22

3-
1. Please check whether another person has raised a [pull request](https://github.com/ManrajGrover/algorithms-js/pulls) for same algorithm/data structure before creating one.
3+
1. Please check whether another person has raised a [pull request](https://github.com/manrajgrover/algorithms-js/pulls) for same algorithm/data structure before creating one.
44
2. Open a pull request explaining what changes it brings.
55
3. Test your code well covering all edge cases.
66
4. Add references where applicable.
77
5. Update README with the new algorithm name linking it to the source code.
88
6. Proper `JSDocs` to be used.
9-
7. Please check [issues](https://github.com/ManrajGrover/algorithms-js/issues) created before requesting for a feature.
9+
7. Please check [issues](https://github.com/manrajgrover/algorithms-js/issues) created before requesting for a feature.

README.md

+32-32
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# algorithms-js [![Build Status](https://travis-ci.org/ManrajGrover/algorithms-js.svg?branch=master)](https://travis-ci.org/ManrajGrover/algorithms-js) [![Build status](https://ci.appveyor.com/api/projects/status/6l0vybrb4y0c7eh8?svg=true)](https://ci.appveyor.com/project/ManrajGrover/algorithms-js) [![npm](https://img.shields.io/npm/v/algorithms-js.svg?maxAge=2592000?style=flat-square)](https://www.npmjs.com/package/algorithms-js) [![npm](https://img.shields.io/npm/dt/algorithms-js.svg?maxAge=2592000?style=flat-square)](https://www.npmjs.com/package/algorithms-js) ![awesome](https://img.shields.io/badge/awesome-yes-green.svg)
1+
# algorithms-js [![Build Status](https://travis-ci.org/manrajgrover/algorithms-js.svg?branch=master)](https://travis-ci.org/manrajgrover/algorithms-js) [![Build status](https://ci.appveyor.com/api/projects/status/6l0vybrb4y0c7eh8?svg=true)](https://ci.appveyor.com/project/manrajgrover/algorithms-js) [![npm](https://img.shields.io/npm/v/algorithms-js.svg?maxAge=2592000?style=flat-square)](https://www.npmjs.com/package/algorithms-js) [![npm](https://img.shields.io/npm/dt/algorithms-js.svg?maxAge=2592000?style=flat-square)](https://www.npmjs.com/package/algorithms-js) ![awesome](https://img.shields.io/badge/awesome-yes-green.svg)
22
> Consumable Data Structures and Algorithms library in JavaScript
33
44
## Installation
@@ -27,65 +27,65 @@ Library contains both algorithms as well as data structures:
2727
### Data Structures
2828
Currently, library supports following data structures:
2929

30-
- [Doubly Linked List](https://github.com/ManrajGrover/algorithms-js/blob/master/src/data-structures/doubly_linked_list.js)
31-
- [Fenwick Tree](https://github.com/ManrajGrover/algorithms-js/blob/master/src/data-structures/fenwick_tree.js)
32-
- [Graph](https://github.com/ManrajGrover/algorithms-js/blob/master/src/data-structures/graph.js)
33-
- [Heap](https://github.com/ManrajGrover/algorithms-js/blob/master/src/data-structures/heap.js)
34-
- [Linked List](https://github.com/ManrajGrover/algorithms-js/blob/master/src/data-structures/linked_list.js)
35-
- [Queue](https://github.com/ManrajGrover/algorithms-js/blob/master/src/data-structures/queue.js)
36-
- [Stack](https://github.com/ManrajGrover/algorithms-js/blob/master/src/data-structures/stack.js)
37-
- [Trie](https://github.com/ManrajGrover/algorithms-js/blob/master/src/data-structures/trie.js)
30+
- [Doubly Linked List](https://github.com/manrajgrover/algorithms-js/blob/master/src/data-structures/doubly_linked_list.js)
31+
- [Fenwick Tree](https://github.com/manrajgrover/algorithms-js/blob/master/src/data-structures/fenwick_tree.js)
32+
- [Graph](https://github.com/manrajgrover/algorithms-js/blob/master/src/data-structures/graph.js)
33+
- [Heap](https://github.com/manrajgrover/algorithms-js/blob/master/src/data-structures/heap.js)
34+
- [Linked List](https://github.com/manrajgrover/algorithms-js/blob/master/src/data-structures/linked_list.js)
35+
- [Queue](https://github.com/manrajgrover/algorithms-js/blob/master/src/data-structures/queue.js)
36+
- [Stack](https://github.com/manrajgrover/algorithms-js/blob/master/src/data-structures/stack.js)
37+
- [Trie](https://github.com/manrajgrover/algorithms-js/blob/master/src/data-structures/trie.js)
3838

3939
### Algorithms
4040
Currently library supports following algorithms:
4141

4242
#### Search
4343
Various Searching algorithms:
4444

45-
- [Binary Search](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/search/binary_search.js)
46-
- [Breadth First Search](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/search/breadth_first_search.js)
47-
- [Depth First Search](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/search/depth_first_search.js)
48-
- [Exponential Search](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/search/exponential_search.js)
49-
- [Interpolation Search](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/search/interpolation_search.js)
50-
- [Jump Search](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/search/jump_search.js)
51-
- [Linear Search](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/search/linear_search.js)
52-
- [Ternary Search](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/search/ternary_search.js)
45+
- [Binary Search](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/search/binary_search.js)
46+
- [Breadth First Search](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/search/breadth_first_search.js)
47+
- [Depth First Search](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/search/depth_first_search.js)
48+
- [Exponential Search](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/search/exponential_search.js)
49+
- [Interpolation Search](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/search/interpolation_search.js)
50+
- [Jump Search](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/search/jump_search.js)
51+
- [Linear Search](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/search/linear_search.js)
52+
- [Ternary Search](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/search/ternary_search.js)
5353

5454
#### Sort
5555
Various Sorting algorithms:
5656

57-
- [Bubble Sort](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/sort/bubble_sort.js)
58-
- [Count Sort](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/sort/count_sort.js)
59-
- [Heap Sort](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/sort/heap_sort.js)
60-
- [Insertion Sort](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/sort/insertion_sort.js)
61-
- [Merge Sort](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/sort/merge_sort.js)
62-
- [Quick Sort](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/sort/quick_sort.js)
63-
- [Selection Sort](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/sort/selection_sort.js)
57+
- [Bubble Sort](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/sort/bubble_sort.js)
58+
- [Count Sort](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/sort/count_sort.js)
59+
- [Heap Sort](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/sort/heap_sort.js)
60+
- [Insertion Sort](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/sort/insertion_sort.js)
61+
- [Merge Sort](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/sort/merge_sort.js)
62+
- [Quick Sort](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/sort/quick_sort.js)
63+
- [Selection Sort](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/sort/selection_sort.js)
6464

6565
#### Math
6666
Various Math algorithms:
6767

68-
- [Extended Euclidean](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/math/extended_euclidean.js)
69-
- [Fast Exponentiation](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/math/fast_exp.js)
70-
- [GCD](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/math/gcd.js)
71-
- [LCM](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/math/lcm.js)
68+
- [Extended Euclidean](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/math/extended_euclidean.js)
69+
- [Fast Exponentiation](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/math/fast_exp.js)
70+
- [GCD](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/math/gcd.js)
71+
- [LCM](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/math/lcm.js)
7272

7373
#### String
7474
Various String algorithms:
7575

76-
- [Levenshtein Distance](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/string/levenshtein_distance.js)
76+
- [Levenshtein Distance](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/string/levenshtein_distance.js)
7777

7878
#### Geometry
7979
Various Geometry algorithms:
8080

81-
- [Tangent between circles](https://github.com/ManrajGrover/algorithms-js/blob/master/src/algorithms/geometry/tangent_between_circles.js)
81+
- [Tangent between circles](https://github.com/manrajgrover/algorithms-js/blob/master/src/algorithms/geometry/tangent_between_circles.js)
8282

8383
## Development
8484

8585
Run:
8686

8787
```sh
88-
$ git clone https://github.com/ManrajGrover/algorithms-js.git
88+
$ git clone https://github.com/manrajgrover/algorithms-js.git
8989
$ cd algorithms-js
9090
$ npm install
9191
```
@@ -127,4 +127,4 @@ Say hi on [twitter](https://twitter.com/manrajsgrover)
127127

128128
## License
129129

130-
[MIT](https://github.com/ManrajGrover/algorithms-js/blob/master/LICENSE) © Manraj Singh
130+
[MIT](https://github.com/manrajgrover/algorithms-js/blob/master/LICENSE) © Manraj Singh

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [algorithms-js](https://github.com/ManrajGrover/algorithms-js#readme) *0.0.8*
1+
# [algorithms-js](https://github.com/manrajgrover/algorithms-js#readme) *0.0.8*
22

33
> Algorithms Library in JavaScript
44

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
<div class="container">
163163

164164
<h1>
165-
<a href="https://github.com/ManrajGrover/algorithms-js#readme">algorithms-js</a>
165+
<a href="https://github.com/manrajgrover/algorithms-js#readme">algorithms-js</a>
166166
<small>0.0.8</small>
167167
</h1>
168168

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
},
1919
"repository": {
2020
"type": "git",
21-
"url": "git+https://github.com/ManrajGrover/algorithms-js.git"
21+
"url": "git+https://github.com/manrajgrover/algorithms-js.git"
2222
},
2323
"author": "Manraj Singh <manrajsinghgrover@gmail.com> (http://manrajsingh.in)",
2424
"license": "MIT",
2525
"bugs": {
26-
"url": "https://github.com/ManrajGrover/algorithms-js/issues"
26+
"url": "https://github.com/manrajgrover/algorithms-js/issues"
2727
},
28-
"homepage": "https://github.com/ManrajGrover/algorithms-js#readme",
28+
"homepage": "https://github.com/manrajgrover/algorithms-js#readme",
2929
"devDependencies": {
3030
"babel-core": "^6.26.3",
3131
"babel-loader": "^7.1.2",

0 commit comments

Comments
 (0)