This commit is contained in:
2022-11-15 16:54:39 +08:00
parent f820cf2f8c
commit 9f4193858f
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#ifndef S0029_DIVIDE_TWO_INTEGERS
#define S0029_DIVIDE_TWO_INTEGERS
#include <climits>
class Solution {
public:
int divide(int dividend, int divisor);
};
#endif