...

/

Solution: Power of Two

Solution: Power of Two

Let’s solve the Power of Two problem using the Bitwise Manipulation pattern.

We'll cover the following...

Statement

An integer n is considered a power of two if it can be expressed as n ==2x==2^x, where xx is an integer.

Determine whether a given integer n is a power of two. If it is, then return TRUE; otherwise, return FALSE.

Constraints: ...