Java/412.Fizz Buzz

題目       代碼部分(2ms 98.26%) class Solution { public List<String> fizzBuzz(int n) { List<String> res = new ArrayList<>(); for(int i = 1; i <= n; i++){ if(i % 3 == 0 && i %
相關文章
相關標籤/搜索