14 lines
183 B
C++
14 lines
183 B
C++
#ifndef S0007_REVERSE_INTEGER_HPP
|
|
#define S0007_REVERSE_INTEGER_HPP
|
|
|
|
#include <queue>
|
|
#include <cmath>
|
|
#include <climits>
|
|
|
|
class Solution {
|
|
public:
|
|
int reverse(int x);
|
|
};
|
|
|
|
#endif
|