2019-03-14 algorithm leetcode -fizzBuzz Leetcode题解之 —— fizz-buzz 思路 思路一 暴力遍历法(耗时127ms) 循环 判断每个数是否符合条件 逐步push 题解 解法一 123456789101112131415161718192021222324/** * @param {number} n * @return {string[]} */var fizzBuzz = function (n) { // TODO solution 1 const result = []; for (let i = 1; i <= n; i++) { const [mol3, mol5] = [i % 3, i % 5]; result.push( !mol3 && !mol5 ? 'FizzBuzz' : !mol3 ? 'Fizz' : !mol5 ? 'Buzz' : '' + i ); } return result;}; 作者 : zhaoyang Duan 地址 : https://ddzy.github.io/blog/2019/03/14/leetcode-fizzBuzz/ 来源 : https://ddzy.github.io/blog 著作权归作者所有,转载请联系作者获得授权。