Files
freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-348-sum-of-a-square-and-a-cube.arabic.md

626 B

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f4c81000cf542c50ffdb 5 Problem 348: Sum of a square and a cube

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler348();

Solution

// solution required