ninehills / blog

https://ninehills.tech
862 stars 80 forks source link

LeetCode-29. Divide Two Integers #45

Closed ninehills closed 6 years ago

ninehills commented 7 years ago

问题

https://leetcode.com/problems/divide-two-integers/description/

Divide two integers without using multiplication, division and mod operator.

If it is overflow, return MAX_INT.

思路

解答

ninehills commented 7 years ago

4