CodeWars Python Solutions Third Angle of a Triangle You are given two angles (in degrees) of a triangle. Write a function to return the 3rd. Note: only positive integers will be tested. Given Code def other_angle(a, b): pass Solution def other_angle(a, b): return 180 - (a + b) See on CodeWars.com