Given the number n and a list of interior angles angles, return whether or not it's possible to make a convex polygon with n sides with the angles given. Remember that angles must be under 180°.
is_shape_possible(3, [80, 70, 30]) ➞ True

A shape with 3 sides and the angles 80°, 70° and 30° is a possible shape.
is_shape_possible(4, [90, 90, 90, 90]) ➞ True
is_shape_possible(3, [20, 20, 140]) ➞ True
is_shape_possible(1, [21]) ➞ False
# n must be larger than 2
is_shape_possible(5, [500, 10, 10, 10, 10]) ➞ False
# You can't have an interior angle bigger than 180°
False if n is less than 3 (see example #3).n number of positive integers given as angles.