HTMLify
Day 112
Views: 2 | Author: djdj
1 2 3 4 5 6 7 8 9 10 | class Solution { /** * @param Integer $n * @return Integer */ function distinctIntegers($n) { return ($n==1)? 1 : $n-1; } } |
1 2 3 4 5 6 7 8 9 10 | class Solution { /** * @param Integer $n * @return Integer */ function distinctIntegers($n) { return ($n==1)? 1 : $n-1; } } |