wes d2a2ba9e15 first commit | пре 4 година | |
---|---|---|
.. | ||
README.md | пре 4 година | |
code.cpp | пре 4 година | |
unitTest.cpp | пре 4 година |
by Matt tags: conditions, validation
Write the function that takes three dimensions of a brick: height(a), width(b) and depth(c) and returns true if this brick can fit into a hole with the width(w) and height(h). Examples doesBrickFit(1, 1, 1, 1, 1) ➞ true doesBrickFit(1, 2, 1, 1, 1) ➞ true doesBrickFit(1, 2, 2, 1, 1) ➞ false Notes You can turn the brick with any side towards the hole. We ass
Write the function that takes three dimensions of a brick: height(a), width(b) and depth(c) and returns true
if this brick can fit into a hole with the width(w) and height(h).
doesBrickFit(1, 1, 1, 1, 1) ➞ true
doesBrickFit(1, 2, 1, 1, 1) ➞ true
doesBrickFit(1, 2, 2, 1, 1) ➞ false