Skip to content

Commit 58ab356

Browse files
committed
update
1 parent 714950f commit 58ab356

File tree

9 files changed

+41
-2
lines changed

9 files changed

+41
-2
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.idea/.gitignore

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/LeetCode.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"python.pythonPath": "C:\\ProgramData\\Anaconda2\\envs\\py3\\python.exe"
2+
"python.pythonPath": "/Users/jack/opt/anaconda3/bin/python"
33
}

0001.两数之和/0001-两数之和.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import java.util.*;
2+
13
class Solution {
24
public int[] twoSum(int[] nums, int target) {
35
Map<Integer, Integer> map = new HashMap<>();
@@ -10,5 +12,8 @@ public int[] twoSum(int[] nums, int target) {
1012
}
1113
return new int[]{};
1214
}
13-
15+
16+
public static void main(String[] arg){
17+
System.out.println("Hello Java");
18+
}
1419
}

0 commit comments

Comments
 (0)