From 58ab35689f3b6ad57a7e9fd6fe020397ad672f5e Mon Sep 17 00:00:00 2001 From: jackshang Date: Thu, 17 Mar 2022 11:59:17 +0800 Subject: [PATCH] update --- .DS_Store | Bin 40964 -> 40964 bytes .idea/.gitignore | 2 ++ .idea/LeetCode.iml | 8 ++++++++ .../inspectionProfiles/profiles_settings.xml | 6 ++++++ .idea/misc.xml | 4 ++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ .vscode/settings.json | 2 +- ...\346\225\260\344\271\213\345\222\214.java" | 7 ++++++- 9 files changed, 41 insertions(+), 2 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/LeetCode.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.DS_Store b/.DS_Store index 5f8901c500e3a3ec6b435b94efe09d6029609d3f..13b05afabd5f0aa541ba5f24696675c25da3bbdc 100644 GIT binary patch delta 601 zcmZoUz|?YpX@b9KBm)Bj7XyO;1A{pb>eU?y;qc7aEXcB$ak9Z27FG_RG|S{;dWMXw zlaJWhGqO$o6kRJD-0E5!vk|L004BiZx z40#MGlX(V&;)tpKy$jK}&F)+B!$i&RT%Er#Y!NJYJ%Q5+RV3Hvx zCnpDIyntkNwTYpDj)I}7S*?yjwV|PbrH+D`r9o{iCx^JIp{-{^Ze>+Nz*$(2F! z%CoUMtSq=FFDE}Q9VpAV*-oLGZ}OjbE=IS>U-X_%7G`qW%x|!bj}sVn3@aHJ*!m`a zj2C6}oMeAyauk#MW`2ifeC$9eAaI|o=6`kaQYMSd`~mm*M1*hr2Lp&CnDm^i7=L^6 zLnedG{0W!&lz_%bI>8lTRWFtQc(N$7*=GKNEqum6Cor}$Fvzcf=^Q0eF(7BfyZn8U)#0hDH${La9W zk#+J72X{uc$@c=R8QCX4Nib&QnEa-|l96+=K%+Gy*JQJau8iE1tptsj{{P=B$id38 znVo}$gHeBTj^KR0jSUHmjNX&Y6l^y)DmL&<7G~0$%x~~$Vwn-6+h!BPoqUs>nd~O- zwda^D?r@NUo##IoOe{2K^xQ1t_>ymOE0f7&{(wsp%LEwRH;V;6;+wpi$!s!z!i|Y# z{6IA#iP!ihe`2zp%wO + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d1e22ec --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..f759faa --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index bb38db8..e32f83d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,3 @@ { - "python.pythonPath": "C:\\ProgramData\\Anaconda2\\envs\\py3\\python.exe" + "python.pythonPath": "/Users/jack/opt/anaconda3/bin/python" } \ No newline at end of file diff --git "a/0001.\344\270\244\346\225\260\344\271\213\345\222\214/0001-\344\270\244\346\225\260\344\271\213\345\222\214.java" "b/0001.\344\270\244\346\225\260\344\271\213\345\222\214/0001-\344\270\244\346\225\260\344\271\213\345\222\214.java" index 793b582..a00c984 100644 --- "a/0001.\344\270\244\346\225\260\344\271\213\345\222\214/0001-\344\270\244\346\225\260\344\271\213\345\222\214.java" +++ "b/0001.\344\270\244\346\225\260\344\271\213\345\222\214/0001-\344\270\244\346\225\260\344\271\213\345\222\214.java" @@ -1,3 +1,5 @@ +import java.util.*; + class Solution { public int[] twoSum(int[] nums, int target) { Map map = new HashMap<>(); @@ -10,5 +12,8 @@ public int[] twoSum(int[] nums, int target) { } return new int[]{}; } - + + public static void main(String[] arg){ + System.out.println("Hello Java"); + } }