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 nth_even(int n){
|
|
return 2 * (n - 1);
|
|
}
|