例用javascript的特性,稍為改寫一下,增加效能 /** * @param {number} n * @return {boolean} */ var isPowerOfTwo = function(n) { if(n <= 0) return false; ...
確定! 回上一頁