Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Aurélien Ooms committed Apr 27, 2015
1 parent 4c78374 commit daa3b63
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@

Disjoint-set data structure code bricks for JavaScript.

```js
find( a ) === find( b ) ; // false
union( A , B ) ;
find( a ) === find( b ) ; // true
```

[![NPM license](http://img.shields.io/npm/l/aureooms-js-disjoint-set.svg?style=flat)](https://raw.githubusercontent.com/aureooms/js-disjoint-set/master/LICENSE)
[![NPM version](http://img.shields.io/npm/v/aureooms-js-disjoint-set.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-disjoint-set)
[![Bower version](http://img.shields.io/bower/v/aureooms-js-disjoint-set.svg?style=flat)](http://bower.io/search/?q=aureooms-js-disjoint-set)
Expand Down

0 comments on commit daa3b63

Please sign in to comment.