leetcode/include/s0029_divide_two_integers.hpp
2022-11-15 16:54:39 +08:00

12 lines
167 B
C++

#ifndef S0029_DIVIDE_TWO_INTEGERS
#define S0029_DIVIDE_TWO_INTEGERS
#include <climits>
class Solution {
public:
int divide(int dividend, int divisor);
};
#endif