摘要: Implement pow(x, n). 题目:求x的n次方 public class Solution { public double myPow(double x ,int n){ } } 解题感受:这道题目在leetcode上的Difficulty是Medium,其实也不比Easy难多少,除了 阅读全文
posted @ 2016-07-11 17:05 Roger's 阅读(576) 评论(0) 推荐(0) 编辑