## ispowerof2 ### Instructions Write a function that determines if a given number is a power of 2. This function returns true if the given number is a power of 2, otherwise it returns false. ## Expected function ```go func IsPowerOf2(n uint) bool { } ```