Skip to content

Commit fa593df

Browse files
authored
Merge pull request #1 from trekhleb/master
i am not sure what i am doing
2 parents 630e24b + fad170c commit fa593df

302 files changed

Lines changed: 15900 additions & 2709 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules
22
.idea
33
coverage
4+
.vscode
5+
.DS_Store

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@ dist: trusty
33
language: node_js
44
node_js:
55
- node
6+
install:
7+
- npm install -g codecov
8+
- npm install
69
script:
710
- npm run ci
8-
- npm run codecov
11+
- codecov
912
notifications:
1013
email: false

CONTRIBUTING.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
## Contributing
22

3+
**General Rules**
4+
35
- As much as possible, try to follow the existing format of markdown and code.
46
- Don't forget to run `npm run lint` and `npm test` before submitting pull requests.
57
- Make sure that **100%** of your code is covered by tests.
8+
9+
**Contributing New Translation**
10+
11+
- Create new `README.xx-XX.md` file with translation alongside with
12+
main `README.md` file where `xx-XX` is [locale and country/region codes](http://www.lingoes.net/en/translator/langcode.htm).
13+
For example `en-US`, `zh-CN`, `zh-TW`, `ko-KR` etc.
14+
- You may also translate all other sub-folders by creating
15+
related `README.xx-XX.md` files in each of them.
16+
17+
**Contributing New Algorithms**
18+
19+
- Make your pull requests to be **specific** and **focused**. Instead of
20+
contributing "several sorting algorithms" all at once contribute them all
21+
one by one separately (i.e. one pull request for "Quick Sort", another one
22+
for "Heap Sort" and so on).
23+
- Provide **README.md** for each of the algorithms **with explanations** of
24+
the algorithm and **with links** to further readings.
25+
- Describe what you do in code using **comments**.

README.es-ES.md

Lines changed: 293 additions & 0 deletions
Large diffs are not rendered by default.

README.fr-FR.md

Lines changed: 281 additions & 0 deletions
Large diffs are not rendered by default.

README.ko-KR.md

Lines changed: 273 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 217 additions & 143 deletions
Large diffs are not rendered by default.

README.pl-PL.md

Lines changed: 283 additions & 0 deletions
Large diffs are not rendered by default.

README.pt-BR.md

Lines changed: 284 additions & 0 deletions
Large diffs are not rendered by default.

README.zh-CN.md

Lines changed: 171 additions & 130 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)