leetcode/include/s0007_reverse_integer.hpp

14 lines
183 B
C++
Raw Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0007_REVERSE_INTEGER_HPP
#define S0007_REVERSE_INTEGER_HPP
2022-11-02 13:34:49 +00:00
#include <queue>
#include <cmath>
2022-11-02 14:23:02 +00:00
#include <climits>
2022-11-02 13:34:49 +00:00
class Solution {
public:
int reverse(int x);
};
#endif