Power of Two | LeetCode problem 231

preview_player
Показать описание
Power of Two
Leetcode problem number 231
Solution in JAVA

JAVA interview programming playlist:

#java #interviewquestions #leetcode
Рекомендации по теме
Комментарии
Автор

Mam i click on your video bcz you'r so beautiful, but after watching your video you explanation is also beautiful❤

anshshivhare
Автор

bool isPowerOfTwo(int n) {
if(n==1){
return true;
}
while(n!=0){
if(n%2!=0){
return false;
}
if(n==2){
return true;
}else{
n=n/2;
}
}
return false;
}

mihirkumar
Автор

Иногда так стыдно, когда узнаешь как просто решается)

hybi