leetcode/include/s0029_divide_two_integers.hpp
2022-11-21 21:15:56 +08:00

12 lines
175 B
C++

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