2020-09-29 22:09:05 +02:00

876 B
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f4861000cf542c50ff99 5 Problem 282: The Ackermann function 问题282阿克曼函数

Description

对于非负整数mnAckermann函数Amn定义如下

例如A10= 2A22= 7和A34= 125。

找到Ann并给出答案mod 148。

Instructions

Tests

tests:
  - text: <code>euler282()</code>应该返回1098988351。
    testString: assert.strictEqual(euler282(), 1098988351);

Challenge Seed

function euler282() {
  // Good luck!
  return true;
}

euler282();

Solution

// solution required

/section>