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