Skip to content

Commit 5fe6a89

Browse files
Added 50 to list
1 parent d9556fb commit 5fe6a89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

50.Pow(x,n).cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Return the accumulated result. */
3535
result *= x;
3636
}
3737
x *= x; // Square x
38-
N /= 2; // Divide n by 2
38+
N /= 2;
3939
}
4040

4141
return result;

0 commit comments

Comments
 (0)