otherAngle.js (8kyu 75)
Codewars 알고리즘 풀이
Problem
- You are given two angles of a triangle.
- 삼각형의 두 각도가 주어진다.
- Write a function to return the 3rd.
- 세 번째 각도를 반환한다.
Solution 01
function otherAngle(a, b) {
return 180 - (a + b);
}
otherAngle(60, 60); // 60
otherAngle(30, 60); // 90
otherAngle(43, 78); // 59