2018.12.11——第十三天

題目 第一次實現想的很簡單,找兩個相鄰的數,一個的平方小於x,另一個大於x,就選小的那個就符合了 class Solution { public int mySqrt(int x) { if(x==0) return 0; int i=1; int r=2; while(true){
相關文章
相關標籤/搜索