-
Notifications
You must be signed in to change notification settings - Fork 3
/
slice-bruteforce.rn
67 lines (61 loc) · 1.29 KB
/
slice-bruteforce.rn
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
fun test(l) {
for start = -10 to 10 {
for end = -10 to 10 {
for step_ = -10 to 10 {
try {
print(l[start:end:step_])
} catch as e {
print("ERROR: " + str(e))
}
}
}
}
for start = -10 to 10 {
for end = -10 to 10 {
try {
print(l[start:end])
} catch as e {
print("ERROR: " + str(e))
}
}
}
for start = -10 to 10 {
try {
print(l[start:])
} catch as e {
print("ERROR: " + str(e))
}
}
for end = -10 to 10 {
try {
print(l[:end])
} catch as e {
print("ERROR: " + str(e))
}
}
for step_ = -10 to 10 {
try {
print(l[::step_])
} catch as e {
print("ERROR: " + str(e))
}
}
for end = -10 to 10 {
for step_ = -10 to 10 {
try {
print(l[:end:step_])
} catch as e {
print("ERROR: " + str(e))
}
}
}
print(l[:])
print(l[::])
}
const l = [0]
for i = 0 to 100 {
arr_append(l, i)
}
test([])
test(l)
test("abcedasdsagskahfdskajfhdskafdhsak")