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
|
|
|
|
2022-11-30 10:20:36 +00:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class S0007 {
|
2022-11-02 13:34:49 +00:00
|
|
|
public:
|
|
|
|
int reverse(int x);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|