-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBogoSort.json
More file actions
40 lines (40 loc) · 1.17 KB
/
BogoSort.json
File metadata and controls
40 lines (40 loc) · 1.17 KB
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
31
32
33
34
35
36
37
38
39
40
{
"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 int[] bogo(int[] field) {",
" Random r = new Random();",
"",
" while (!isFinished(field)) {",
" int a = r.nextInt(field.length);",
" int b = r.nextInt(field.length);",
"",
" int temp = field[a];",
" field[a] = field[b];",
" field[b] = temp;",
" }",
"",
" return field;",
" }",
"",
" public static boolean isFinished(int[] field) {",
" for (int i = 0; i < field.length - 1; i++) {",
" if (field[i] > field[i + 1]) {",
" return false;",
" }",
" }",
" return true;",
" }"
]
}