Unverified Commit 4bc2b55a authored by 程序员吴师兄's avatar 程序员吴师兄 Committed by GitHub
Browse files

Merge pull request #24 from mickeyouyou/patch-2

Update LeetCode No.231:pow of 2
parents fdee9bf6 95aeea99
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
``` ```
输入: 1 输入: 1
输出: true 输出: true
解释: 20 = 1 解释: 2^0 = 1
``` ```
**示例 2:** **示例 2:**
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
``` ```
输入: 16 输入: 16
输出: true 输出: true
解释: 24 = 16 解释: 2^4 = 16
``` ```
**示例 3:** **示例 3:**
...@@ -80,4 +80,4 @@ public: ...@@ -80,4 +80,4 @@ public:
![](https://bucket-1257126549.cos.ap-guangzhou.myqcloud.com/blog/fz0rq.png) ![](https://bucket-1257126549.cos.ap-guangzhou.myqcloud.com/blog/fz0rq.png)
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment