freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-169-exploring-the-n...

965 B
Raw Blame History

id challengeType videoUrl title
5900f4151000cf542c50ff28 5 问题169探索数字可以表示为2的幂之和的不同方式的数量

Description

将f0= 1和fn定义为不同方式的数量n可以表示为2的整数幂之和使用每个幂不超过两次。例如f10= 5因为有五种不同的表达方式101 + 1 + 8 1 + 1 + 4 + 41 + 1 + 2 + 2 + 4 2 + 4 + 4 2 + 8什么是f 1025

Instructions

Tests

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

Challenge Seed

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

euler169();

Solution

// solution required

/section>