Create a function that takes the dimensions of two triangles (as lists) and checks if the first triangle fits into the second one.
does_triangle_fit([1, 1, 1], [1, 1, 1]) ➞ True
does_triangle_fit([1, 1, 1], [2, 2, 2]) ➞ True
does_triangle_fit([1, 2, 3], [1, 2, 2]) ➞ False
does_triangle_fit([1, 2, 4], [1, 2, 6]) ➞ False
False if the triangle with that dimensions is not possible.