You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
438 B
29 lines
438 B
/*
|
|
*
|
|
* Original Javascript version by David Hedbor(http://www.bagley.org/~doug/shootout/)
|
|
*
|
|
*/
|
|
local n, i, k;
|
|
|
|
if(ARGS.len()!=0) {
|
|
n = ARGS[0].tointeger();
|
|
if(n < 1) n = 1;
|
|
} else {
|
|
n = 1;
|
|
}
|
|
|
|
local x = []; x.resize(n);
|
|
local y = []; y.resize(n);
|
|
|
|
for (i = 0; i < n; i+=1) {
|
|
x[i] = i + 1;
|
|
y[i] = 0;
|
|
}
|
|
|
|
for (k = 0 ; k < n; k+=1) {
|
|
for (i = n-1; i >= 0; i-=1) {
|
|
y[i] = y[i]+ x[i];
|
|
}
|
|
}
|
|
print(y[0].tostring()+" "+y[n-1]);
|
|
|