Page MenuHomePhorge

ack.js
No OneTemporary

Size
192 B
Referenced Files
None
Subscribers
None
function ack(i, j) {
console.log('ack(' + i + ', ' + j + ')');
if (i == 0) return j + 1;
if (j == 0) return ack(i - 1, 1);
return ack(i - 1, ack(i, j - 1));
}
console.log(ack(3, 3));

File Metadata

Mime Type
text/plain
Expires
Sun, May 3, 8:09 AM (1 d, 14 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
517912
Default Alt Text
ack.js (192 B)

Event Timeline