freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-321-swapping-counte...

629 B

id challengeType title videoUrl localeTitle
5900f4ae1000cf542c50ffc0 5 Problem 321: Swapping Counters

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler321();

Solution

// solution required