13 lines
156 B
C++
13 lines
156 B
C++
|
#ifndef S0007_REVERSE_INTEGER
|
||
|
#define S0007_REVERSE_INTEGER
|
||
|
|
||
|
#include <queue>
|
||
|
#include <cmath>
|
||
|
|
||
|
class Solution {
|
||
|
public:
|
||
|
int reverse(int x);
|
||
|
};
|
||
|
|
||
|
#endif
|