프로그래밍/CodeSignal
[Intro] add
CHIqueen
2020. 2. 26. 21:27
Write a function that returns the sum of two numbers.
Example
For param1 = 1 and param2 = 2, the output should be
add(param1, param2) = 3.
int add(int param1, int param2) {
return param1+param2;
}