Does the Cargo Fit? (Part 2)

Published by Matt in

A ship has to transport cargo from one place to another, while picking up cargo along the way. Given the total amount of cargo and the types of cargo holds in the ship as arrays, create a function that returns true if each weight of cargo can fit in one hold, and false if it can't.

  • "S" means 50 cargo space.
  • "M" means 100 cargo space.
  • "L" means 200 cargo space.

Examples

will_fit(["M", "L", "L", "M"], [56, 62, 84, 90]) ➞ true

will_fit(["S", "S", "S", "S", "L"], [40, 50, 60, 70 , 80, 90, 200]) ➞ false

will_fit(["L", "L", "M"], [56, 62, 84, 90]) ➞ true

Notes

N/A

Watch a quick demo on how Edabit works.