forked from yilkalargaw/geezify-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_case.lua
More file actions
95 lines (93 loc) · 3.12 KB
/
test_case.lua
File metadata and controls
95 lines (93 loc) · 3.12 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
geezNumberTestData = {
{1, '፩'},
{10, '፲'},
{100, '፻'},
{1000, '፲፻'},
{10000, '፼'}, -- (እልፍ)
{100000, '፲፼'}, -- (አእላፍ)
{1000000, '፻፼'}, -- (አእላፋት)
{10000000, '፲፻፼'}, -- (ትእልፊት)
{100000000, '፼፼'}, -- (ትእልፊታት)
{1000000000, '፲፼፼'},
{10000000000, '፻፼፼'},
{100000000000, '፲፻፼፼'}, -- (ምእልፊት)
{1000000000000, '፼፼፼'}, -- (ምእልፊታት)
{100010000, '፼፩፼'},
{100100000, '፼፲፼'},
{100200000, '፼፳፼'},
{100110000, '፼፲፩፼'},
{1, '፩'},
{11, '፲፩'},
{111, '፻፲፩'},
{1111, '፲፩፻፲፩'},
{11111, '፼፲፩፻፲፩'},
{111111, '፲፩፼፲፩፻፲፩'},
{1111111, '፻፲፩፼፲፩፻፲፩'},
{11111111, '፲፩፻፲፩፼፲፩፻፲፩'},
{111111111, '፼፲፩፻፲፩፼፲፩፻፲፩'},
{1111111111, '፲፩፼፲፩፻፲፩፼፲፩፻፲፩'},
{11111111111, '፻፲፩፼፲፩፻፲፩፼፲፩፻፲፩'},
{111111111111, '፲፩፻፲፩፼፲፩፻፲፩፼፲፩፻፲፩'},
{1111111111111, '፼፲፩፻፲፩፼፲፩፻፲፩፼፲፩፻፲፩'},
{1, '፩'},
{12, '፲፪'},
{123, '፻፳፫'},
{1234, '፲፪፻፴፬'},
{12345, '፼፳፫፻፵፭'},
{7654321, '፯፻፷፭፼፵፫፻፳፩'},
{17654321, '፲፯፻፷፭፼፵፫፻፳፩'},
{51615131, '፶፩፻፷፩፼፶፩፻፴፩'},
{15161513, '፲፭፻፲፮፼፲፭፻፲፫'},
{10101011, '፲፻፲፼፲፻፲፩'},
{101, '፻፩'},
{1001, '፲፻፩'},
{1010, '፲፻፲'},
{1011, '፲፻፲፩'},
{1100, '፲፩፻'},
{1101, '፲፩፻፩'},
{1111, '፲፩፻፲፩'},
{10001, '፼፩'},
{10010, '፼፲'},
{10100, '፼፻'},
{10101, '፼፻፩'},
{10110, '፼፻፲'},
{10111, '፼፻፲፩'},
{100001, '፲፼፩'},
{100010, '፲፼፲'},
{100011, '፲፼፲፩'},
{100100, '፲፼፻'},
{101010, '፲፼፲፻፲'},
{1000001, '፻፼፩'},
{1000101, '፻፼፻፩'},
{1000100, '፻፼፻'},
{1010000, '፻፩፼'},
{1010001, '፻፩፼፩'},
{1100001, '፻፲፼፩'},
{1010101, '፻፩፼፻፩'},
{101010101, '፼፻፩፼፻፩'},
{100010000, '፼፩፼'},
{100010100, '፼፩፼፻'},
{101010100, '፼፻፩፼፻'},
{3, '፫'},
{30, '፴'},
{33, '፴፫'},
{303, '፫፻፫'},
{3003, '፴፻፫'},
{3030, '፴፻፴'},
{3033, '፴፻፴፫'},
{3300, '፴፫፻'},
{3303, '፴፫፻፫'},
{3333, '፴፫፻፴፫'},
{30003, '፫፼፫'},
{30303, '፫፼፫፻፫'},
{300003, '፴፼፫'},
{303030, '፴፼፴፻፴'},
{3000003, '፫፻፼፫'},
{3000303, '፫፻፼፫፻፫'},
{3030003, '፫፻፫፼፫'},
{3300003, '፫፻፴፼፫'},
{3030303, '፫፻፫፼፫፻፫'},
{303030303, '፫፼፫፻፫፼፫፻፫'},
{333333333, '፫፼፴፫፻፴፫፼፴፫፻፴፫'}
}
return geezNumberTestData