-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDropNumberInput.json
More file actions
30 lines (30 loc) · 977 Bytes
/
DropNumberInput.json
File metadata and controls
30 lines (30 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"font-normal": "JetBrainsMono-Regular.ttf",
"font-bold": "JetBrainsMono-Bold.ttf",
"font-italic": "JetBrainsMono-BoldItalic.ttf",
"font-bold-italic": "JetBrainsMono-Italic.ttf",
"font-size": 19,
"width-margin": 5,
"height-margin": 5,
"spacing": 1,
"background-color": [
255,
255,
255
],
"source-code": [
" public static void main(String[] args) {",
" System.out.println(\"\");",
" System.out.println(\"1 3 4\");",
" System.out.println(\"\");",
" System.out.println(\"8 8 4\");",
" System.out.println(\"\");",
" int[] values = {8, 8, 1, 3, 4};",
" int[] middle = dropNumber(values, 3);",
" int[] out = dropNumber(middle, 1);",
" for (int value : out) {",
" System.out.print(\"\" + value + \" \");",
" }",
" }"
]
}