s0007
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-11-02 21:34:49 +08:00
parent 83c66fc158
commit 59d1cb7245
3 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#ifndef S0007_REVERSE_INTEGER
#define S0007_REVERSE_INTEGER
#include <queue>
#include <cmath>
class Solution {
public:
int reverse(int x);
};
#endif