Skip to content

Commit eb53c21

Browse files
committed
Time: 75 ms (75.8%), Space: 53.3 MB (77.92%) - LeetHub
1 parent 1ac9ea5 commit eb53c21

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

0069-sqrtx/0069-sqrtx.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
function mySqrt(x: number): number {
2+
return Math.floor(Math.sqrt(x));
3+
};

0 commit comments

Comments
 (0)