freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-351-hexagonal-orcha...

685 B

id challengeType title videoUrl localeTitle
5900f4cb1000cf542c50ffde 5 Problem 351: Hexagonal orchards Задача 351: Шестиугольные сады

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler351();

Solution

// solution required