leetcode/include/s0007_reverse_integer.hpp

16 lines
202 B
C++

#ifndef S0007_REVERSE_INTEGER_HPP
#define S0007_REVERSE_INTEGER_HPP
#include <queue>
#include <cmath>
#include <climits>
using namespace std;
class S0007 {
public:
int reverse(int x);
};
#endif