mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2025-03-22 12:16:40 +01:00
3 lines
45 B
C++
3 lines
45 B
C++
int angle(int n) {
|
|
return 180 * (n - 2);
|
|
}
|