(String[] args)
| 17 | } |
| 18 | |
| 19 | public static void main(String[] args) { |
| 20 | Solution solution = new Solution(); |
| 21 | System.out.println(solution.reverse(123)); |
| 22 | System.out.println(solution.reverse(-123)); |
| 23 | System.out.println(solution.reverse(100)); |
| 24 | System.out.println(solution.reverse(1000000003)); |
| 25 | } |
| 26 | } |