mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
3 lines
45 B
C++
3 lines
45 B
C++
int angle(int n) {
|
|
return 180 * (n - 2);
|
|
}
|