A + B Problem
ID: 1; naive
Solution 1 (Java)
public class Solution {
/**
* @param a: An integer
* @param b: An integer
* @return: The sum of a and b
*/
public int aplusb(int a, int b) {
return a + b;
}
}Solution 2 (Java)
Notes
Citation
Last updated