freeCodeCamp/curriculum/challenges/spanish/08-coding-interview-prep/project-euler/problem-54-poker-hands.span...

687 B

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