Skip to content

Commit e5e19b0

Browse files
committed
Runtime: 34 ms (Top 10.30%) | Memory: 41.3 MB (Top 62.51%)
1 parent bc69423 commit e5e19b0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Runtime: 34 ms (Top 10.30%) | Memory: 41.3 MB (Top 62.51%)
2+
13
class Solution {
24
public int mySqrt(int x) {
35
long answer = 0;
@@ -6,4 +8,4 @@ public int mySqrt(int x) {
68
}
79
return (int)answer - 1;
810
}
9-
}
11+
}

0 commit comments

Comments
 (0)