freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-305-reflexive-posit...

626 B

id challengeType title videoUrl localeTitle
5900f49d1000cf542c50ffb0 5 Problem 305: Reflexive Position

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler305(), 18174995535140, "<code>euler305()</code> should return 18174995535140.");'

Challenge Seed

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

euler305();

Solution

// solution required