This repository has been archived by the owner on Jun 24, 2021. It is now read-only.
forked from hoanhan101/algo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reverse_integer_test.go
85 lines (70 loc) · 1.81 KB
/
reverse_integer_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
Problem:
- Given a 64-bit integer, reverse its digits.
Assumption:
- Negative numbers are also valid.
- Must handle the case where the reversed integer is overflow.
Example:
- Input: 123
Output: 321
- Input: -123
Output: -321
- Input: 8085774586302733229 Output: 0
Explanation: The reversed integer 9223372036854775808 overflows by 1 so we return 0.
Approach:
- Use modulo by 10 to get a digit at ones' place of the input and
dividing by 10 to shift it to the right (eliminate the ones' place).
Solution:
- Initialize the output as a 64-bit integer.
- If the input is not zero yet, keep multiply the output and diving the
input by 10 so that: output = (output * 10) + (input % 10) and
input = input / 10.
- Also, remember to check the overflow/underflow of the output and return
0 if necessary.
Cost:
- O(m) time, O(1) space, where m is log10 of the input.
*/
package leetcode
import (
"math"
"testing"
"github.com/hoanhan101/algo/common"
)
func TestReverseInteger(t *testing.T) {
tests := []struct {
in int64
expected int64
}{
{0, 0},
{1, 1},
{10, 1},
{12, 21},
{123, 321},
{-123, -321},
{8085774586302733229, 0},
{7085774586302733229, 9223372036854775807},
{1085774586302733229, 9223372036854775801},
{-8085774586302733229, -9223372036854775808},
{-9085774586302733229, 0},
}
for _, tt := range tests {
result := reverseInteger(tt.in)
common.Equal(t, tt.expected, result)
}
}
func reverseInteger(in int64) int64 {
var out, remainder int64
for in != 0 {
remainder = in % 10
// check for overflow/underflow before multiplying by 10.
if out > math.MaxInt64/10 || (out == math.MaxInt64/10 && remainder > 7) {
return 0
}
if out < math.MinInt64/10 || (out == math.MinInt64/10 && remainder < -8) {
return 0
}
out = out*10 + remainder
in /= 10
}
return out
}