mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-22 08:33:48 +01:00
3 lines
45 B
C
3 lines
45 B
C
int nth_even(int n){
|
|
return 2 * (n - 1);
|
|
}
|