Compare commits

...

4 Commits

Author SHA1 Message Date
0b8cd5830a 更新 test.java 2023-09-05 15:59:34 +08:00
7382425887 更新 Solution.java 2023-09-05 15:59:29 +08:00
4def4aa2b0 更新 workspace.xml 2023-09-05 15:59:25 +08:00
23ca657ee9 更新 .gitignore 2023-09-05 15:59:21 +08:00
4 changed files with 9 additions and 7 deletions

3
.gitignore vendored
View File

@@ -56,4 +56,5 @@ hs_err_pid*
replay_pid* replay_pid*
>>>>>>> gitea/master >>>>>>> gitea/master
.idea/* .idea/*
.idea/workspace.xml

7
.idea/workspace.xml generated
View File

@@ -4,10 +4,7 @@
<option name="autoReloadType" value="SELECTIVE" /> <option name="autoReloadType" value="SELECTIVE" />
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="45f625e1-36c7-4942-8f7c-ba3ebe9a7d53" name="变更" comment=""> <list default="true" id="45f625e1-36c7-4942-8f7c-ba3ebe9a7d53" name="变更" comment="" />
<change beforePath="$PROJECT_DIR$/src/solution/Solution.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/solution/Solution.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/solution/test.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/solution/test.java" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" /> <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
@@ -77,7 +74,7 @@
<option name="presentableId" value="Default" /> <option name="presentableId" value="Default" />
<updated>1693822719192</updated> <updated>1693822719192</updated>
<workItem from="1693822720224" duration="5742000" /> <workItem from="1693822720224" duration="5742000" />
<workItem from="1693895305007" duration="5324000" /> <workItem from="1693895305007" duration="5358000" />
</task> </task>
<servers /> <servers />
</component> </component>

View File

@@ -81,4 +81,8 @@ public class Solution {
} }
return candidate; return candidate;
} }
public void merge(int[] nums1, int m, int[] nums2, int n) {
}
} }

View File

@@ -6,6 +6,6 @@ import java.util.Set;
public class test { public class test {
public static void main(String[] args) { public static void main(String[] args) {
} }
} }