-
Notifications
You must be signed in to change notification settings - Fork 20
/
ReverseInteger.js
69 lines (59 loc) · 1.76 KB
/
ReverseInteger.js
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
/**
*
* Given a 32-bit signed integer, reverse digits of an integer.
*
* Example 1: Input: 123, Output: 321
* Example 2: Input: -123, Output: -321
*
* Have you thought about this?
* Here are some good questions to ask before coding. Bonus points for you if you have already thought through this!
* If the integer's last digit is 0, what should the output be? ie, cases such as 10, 100.
* Did you notice that the reversed integer might overflow? Assume the input is a 32-bit integer, then the reverse of 1000000003 overflows.
* How should you handle such cases?
* For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.
*
* Note:
* Assume we are dealing with an environment which could only hold integers within the 32-bit signed integer range.
* For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.
*/
/**
* @param {number} x
* @return {number}
*/
let reverse = function (x) {
if (x === 0) {
return 0;
}
let result = 0;
let anotherX = x;
while (anotherX !== 0) {
result = result * 10 + anotherX % 10;
anotherX = parseInt(anotherX / 10);
}
let intMax = 2147483647;
let intMin = -2147483648;
if ((result > 0 && (result - intMax) > 0) || (result < 0 && (result - intMin) < 0)) {
return 0
}
return parseInt(result)
};
if (reverse(123) === 321) {
console.log("pass")
} else {
console.error("failed")
}
if (reverse(-123) === -321) {
console.log("pass")
} else {
console.error("failed")
}
if (reverse(1000000003) === 0) {
console.log("pass")
} else {
console.error("failed")
}
if (reverse(1534236469) === 0) {
console.log("pass")
} else {
console.error("failed")
}