leetcode/include/s0029_divide_two_integers.hpp

12 lines
175 B
C++
Raw Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0029_DIVIDE_TWO_INTEGERS_HPP
#define S0029_DIVIDE_TWO_INTEGERS_HPP
2022-11-15 08:54:39 +00:00
#include <climits>
class Solution {
public:
int divide(int dividend, int divisor);
};
#endif