Files
freeCodeCamp/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-309-integer-ladders.english.md
Oliver Eyton-Williams bd68b70f3d Feat: hide blocks not challenges (#39504)
* fix: remove isHidden flag from frontmatter

* fix: add isUpcomingChange

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>

* feat: hide blocks not challenges

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>
2020-09-03 15:07:40 -07:00

1.4 KiB

id, challengeType, title, forumTopicId
id challengeType title forumTopicId
5900f4a11000cf542c50ffb4 5 Problem 309: Integer Ladders 301963

Description

In the classic "Crossing Ladders" problem, we are given the lengths x and y of two ladders resting on the opposite walls of a narrow, level street. We are also given the height h above the street where the two ladders cross and we are asked to find the width of the street (w).

Here, we are only concerned with instances where all four variables are positive integers. For example, if x = 70, y = 119 and h = 30, we can calculate that w = 56.

In fact, for integer values x, y, h and 0 < x < y < 200, there are only five triplets (x,y,h) producing integer solutions for w: (70, 119, 30), (74, 182, 21), (87, 105, 35), (100, 116, 35) and (119, 175, 40).

For integer values x, y, h and 0 < x < y < 1 000 000, how many triplets (x,y,h) produce integer solutions for w?

Instructions

Tests

tests:
  - text: <code>euler309()</code> should return 210139.
    testString: assert.strictEqual(euler309(), 210139);

Challenge Seed

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

euler309();

Solution

// solution required