Skip to content

Commit bc50200

Browse files
committed
添加kotlin source
1 parent 73dec56 commit bc50200

File tree

3 files changed

+45
-42
lines changed

3 files changed

+45
-42
lines changed

.github/workflows/maven.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
java-version: "19"
1919
distribution: "temurin"
2020
cache: maven
21+
- name: compile with Maven
22+
run: mvn compile --file pom.xml
2123
- name: test with Maven
2224
run: mvn test --file pom.xml
2325
- name: install with maven

pom.xml

Lines changed: 43 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8" ?>
1+
<?xml version="1.0" encoding="UTF-8"?>
22
<project
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xmlns="http://maven.apache.org/POM/4.0.0"
@@ -89,39 +89,40 @@
8989
</goals>
9090
<configuration>
9191
<sourceDirs>
92-
<sourceDir
93-
>reverse-nodes-in-even-length-groups</sourceDir>
94-
<sourceDir
95-
>number-of-distinct-averages</sourceDir>
96-
<source>letter-case-permutation</source>
97-
<source>operations-lcci</source>
98-
<sourceDir
99-
>binary-search-tree-iterator</sourceDir>
100-
<sourceDir
101-
>construct-binary-search-tree-from-preorder-traversal</sourceDir>
102-
<source>er-cha-shu-ran-se-UGC</source>
103-
<source
104-
>er-cha-sou-suo-shu-de-di-kda-jie-dian-lcof</source>
105-
<source>utils</source>
106-
<source
107-
>minimum-number-of-moves-to-seat-everyone</source>
10892
<source>add-two-integers</source>
93+
<source>binary-search-tree-iterator</source>
94+
<source>construct-binary-search-tree-from-preorder-traversal</source>
95+
<source>construct-quad-tree</source>
96+
<source>construct-quad-tree</source>
97+
<source>count-vowel-strings-in-ranges</source>
98+
<source>count-ways-to-build-good-string</source>
10999
<source>design-skiplist</source>
110-
<source
111-
>insert-into-a-binary-search-tree</source>
100+
<source>er-cha-shu-ran-se-UGC</source>
101+
<source>er-cha-sou-suo-shu-de-di-kda-jie-dian-lcof</source>
102+
<source>insert-into-a-binary-search-tree</source>
103+
<source>insert-into-a-binary-search-tree</source>
104+
<source>letter-case-permutation</source>
105+
<source>maximum-number-of-weeks-for-which-you-can-work</source>
112106
<source>min-cost-to-connect-all-points</source>
107+
<source>minimum-number-of-moves-to-seat-everyone</source>
108+
<source>number-of-distinct-averages</source>
109+
<source>operations-lcci</source>
110+
<source>possible-bipartition</source>
113111
<source>possible-bipartition</source>
114-
<source
115-
>reveal-cards-in-increasing-order</source>
116-
<source
117-
>serialize-and-deserialize-binary-tree</source>
118-
<source>three-in-one-lcci</source>
119-
<source>count-ways-to-build-good-string</source>
120-
<sourceDir
121-
>split-message-based-on-limit</sourceDir>
122112
<source>remove-vowels-from-a-string</source>
113+
<source>reveal-cards-in-increasing-order</source>
114+
<source>reverse-nodes-in-even-length-groups</source>
115+
<source>reverse-nodes-in-even-length-groups</source>
116+
<source>serialize-and-deserialize-binary-tree</source>
117+
<source>split-message-based-on-limit</source>
118+
119+
<source>three-in-one-lcci</source>
120+
<source>utils</source>
121+
<source>utils</source>
122+
<source>utils</source>
123+
<source>zigzag-iterator</source>
124+
123125

124-
<sourceDir>zigzag-iterator</sourceDir>
125126
</sourceDirs>
126127
</configuration>
127128
</execution>
@@ -176,19 +177,19 @@
176177
<mainClass>MainKt</mainClass>
177178
</configuration>
178179
</plugin>
179-
<!-- <plugin>-->
180-
<!-- <groupId>org.apache.maven.plugins</groupId>-->
181-
<!-- <version>3.2.1</version>-->
182-
<!-- <artifactId>maven-source-plugin</artifactId>-->
183-
<!-- <executions>-->
184-
<!-- <execution>-->
185-
<!-- <id>attach-sources</id>-->
186-
<!-- <goals>-->
187-
<!-- <goal>jar</goal>-->
188-
<!-- </goals>-->
189-
<!-- </execution>-->
190-
<!-- </executions>-->
191-
<!-- </plugin>-->
180+
<!-- <plugin>-->
181+
<!-- <groupId>org.apache.maven.plugins</groupId>-->
182+
<!-- <version>3.2.1</version>-->
183+
<!-- <artifactId>maven-source-plugin</artifactId>-->
184+
<!-- <executions>-->
185+
<!-- <execution>-->
186+
<!-- <id>attach-sources</id>-->
187+
<!-- <goals>-->
188+
<!-- <goal>jar</goal>-->
189+
<!-- </goals>-->
190+
<!-- </execution>-->
191+
<!-- </executions>-->
192+
<!-- </plugin>-->
192193

193194
<plugin>
194195
<groupId>org.apache.maven.plugins</groupId>
@@ -253,4 +254,4 @@
253254

254255
</dependencies>
255256

256-
</project>
257+
</project>
File renamed without changes.

0 commit comments

Comments
 (0)