JavaScript Sprawdź, czy numer jest mocą 2
function powerOfTwo(x) {
return Math.log2(x) % 1 === 0;
}
KostasX
function powerOfTwo(x) {
return Math.log2(x) % 1 === 0;
}