Files
freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-54-poker-hands.spanish.md
2018-10-11 02:15:05 +05:30

687 B

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f3a21000cf542c50feb5 5 Problem 54: Poker hands Problema 54: manos de poker

Description

undefined

Instructions

Tests

tests:
  - text: <code>euler54()</code> debe devolver 376.
    testString: 'assert.strictEqual(euler54(), 376, "<code>euler54()</code> should return 376.");'

Challenge Seed

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

euler54();

Solution

// solution required