--- id: 5900f3b01000cf542c50fec3 challengeType: 5 title: 'Problem 68: Magic 5-gon ring' videoUrl: '' localeTitle: 'Задача 68: Волшебное 5-угольное кольцо' --- ## Description undefined ## Instructions undefined ## Tests ```yml tests: - text: '' testString: 'assert.strictEqual(euler68(), 6531031914842725, "euler68() should return 6531031914842725.");' ``` ## Challenge Seed ```js function euler68() { // Good luck! return true; } euler68(); ``` ## Solution ```js // solution required ```
euler68()