|
11 | 11 | </div>
|
12 | 12 |
|
13 | 13 | <p align="center">
|
| 14 | + <a href="https://search.maven.org/#artifactdetails%7Ccom.abranhe%7Callalgorithms"><img src="https://maven-badges.herokuapp.com/maven-central/com.abranhe/allalgorithms/badge.svg"></a> |
| 15 | + <a href="https://www.javadoc.io/doc/com.abranhe/allalgorithms"><img src="https://www.javadoc.io/badge/com.abranhe/allalgorithms.svg" alt="Javadocs"></a> |
14 | 16 | <a href="https://travis-ci.org/allalgorithms/java-lib"><img src="https://img.shields.io/travis/allalgorithms/java-lib.svg?logo=travis" /></a>
|
15 | 17 | <a href="https://github.com/abranhe/python-lib/blob/master/license"><img src="https://img.shields.io/github/license/abranhe/java-lib.svg" /></a>
|
16 | 18 | <a href="https://github.com/allalgorithms"><img src="https://cdn.abranhe.com/projects/algorithms/badge.svg"/></a>
|
|
23 | 25 | <a href="https://java.allalgorithms.com"><code>java.allalgorithms.com</code></a>
|
24 | 26 | </p>
|
25 | 27 |
|
26 |
| -# Why? |
| 28 | +## Why? |
27 | 29 |
|
28 |
| -- Why not 😂 |
29 |
| -- Clean and focused |
30 |
| -- Actively maintained |
31 |
| -- Because All Algorithms should be easy to use in Python |
| 30 | +- Why not 😂?? |
| 31 | +- Clean and focused. |
| 32 | +- Actively maintained. |
| 33 | +- Because All Algorithms should be easy to use in Java. |
32 | 34 |
|
33 |
| -Read the detailed documentation at [python.allalgorithms.com](https://python.allalgorithms.com) or see the [`docs`](https://github.com/abranhe/python-lib/blob/master/docs) directory on Github. See [Tree](#tree). |
| 35 | +Read the detailed documentation at [java.allalgorithms.com](https://java.allalgorithms.com). See the [All ▲lgorithms Tree](#tree). |
34 | 36 |
|
35 | 37 | **Want to contribute?** [GET STARTED HERE](https://github.com/abranhe/java-lib/tree/master/.github/contributing.md)
|
36 | 38 |
|
37 |
| -Dependency Information |
38 |
| -Download the latest version JAR to include it in your project |
| 39 | +## Dependency Information |
39 | 40 |
|
40 |
| -### Maven |
| 41 | +*Download the latest version JAR to include it in your project* |
| 42 | + |
| 43 | +#### Maven |
41 | 44 |
|
42 | 45 | ```xml
|
43 | 46 | <dependency>
|
44 |
| - <groupId>com.abranhe.bigdecimal</groupId> |
45 |
| - <artifactId>bigdecimal</artifactId> |
46 |
| - <version>1.0.1</version> |
| 47 | + <groupId>com.abranhe.allalgorithms</groupId> |
| 48 | + <artifactId>allalgorithms</artifactId> |
| 49 | + <version>0.0.1</version> |
47 | 50 | </dependency>
|
48 | 51 | ```
|
49 | 52 |
|
| 53 | +#### Gradle |
| 54 | + |
| 55 | +``` |
| 56 | +compile 'com.abranhe:bigdecimal:0 .0.1' |
| 57 | +``` |
| 58 | + |
| 59 | +## Import |
| 60 | + |
| 61 | +``` |
| 62 | +import com.abranhe.allalgorithms.*; |
| 63 | +``` |
| 64 | + |
50 | 65 | ## Usage
|
51 | 66 |
|
52 | 67 | ```java
|
|
0 commit comments