Skip to content

Commit 05761f0

Browse files
authored
Update README.md
1 parent a4dd5bd commit 05761f0

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,45 @@
66
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=javadev_LeetCode-in-Kotlin&metric=sqale_rating)](https://sonarcloud.io/summary/overall?id=javadev_LeetCode-in-Kotlin)
77

88
Kotlin Solution for LeetCode algorithm problems, continually updating.
9+
10+
## Installation
11+
12+
Include the following in your `pom.xml` for Maven:
13+
14+
```xml
15+
16+
<dependencies>
17+
18+
<dependency>
19+
20+
<groupId>com.github.javadev</groupId>
21+
22+
<artifactId>leetcode-in-kotlin</artifactId>
23+
24+
<version>1.1</version>
25+
26+
</dependency>
27+
28+
...
29+
30+
</dependencies>
31+
32+
```
33+
34+
Gradle:
35+
36+
```groovy
37+
38+
implementation 'com.github.javadev:leetcode-in-kotlin:1.6'
39+
40+
```
41+
42+
#### Tips and Tricks
43+
44+
* format code
45+
46+
* `gradlew spotlessKotlinApply`
47+
48+
* check formatting
49+
50+
* `gradlew spotlessKotlinCheck`

0 commit comments

Comments
 (0)