Skip to content

Commit 51ecfe6

Browse files
author
Jachin
committed
start springcloud
1 parent e745de9 commit 51ecfe6

25 files changed

Lines changed: 1509 additions & 456 deletions

File tree

LeetCode/.idea/workspace.xml

Lines changed: 61 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
677 Bytes
Binary file not shown.
-385 Bytes
Binary file not shown.

LeetCode/src/HelloWorld.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import java.util.Arrays;
2+
3+
/**
4+
* @description:
5+
* @Author: JachinDo
6+
* @Date: 2019/08/30 14:12
7+
*/
8+
9+
public class HelloWorld {
10+
public static void main(String []args) {
11+
12+
int[] x = {0,3,3,3,3,2,1};
13+
14+
int[] array = Arrays.copyOfRange(x,2,5);
15+
System.out.println("Hello World!");
16+
}
17+
}

0 commit comments

Comments
 (0)