blob: f1b7fc6b19e431d2725481f1d223d4e3c35aa02e (
plain)
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
|
{
"ch-1" : [
{
"function" : "cleardigits",
"arguments" : "cab12",
"result" : "c"
},
{
"arguments" : "xy99",
"result" : ""
},
{
"arguments" : "pa1erl",
"result" : "perl"
}
],
"ch-2" : [
{
"function" : "titlecapital",
"arguments" : "PERL IS gREAT",
"result" : "Perl is Great"
},
{
"arguments" : "THE weekly challenge",
"result" : "The Weekly Challenge"
},
{
"arguments" : "YoU ARE A stAR",
"result" : "You Are a Star"
}
]
}
|