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 %
相关文章
相关标签/搜索