Skip to content

Commit 457234d

Browse files
committed
#7: improve description
1 parent cd1cbaa commit 457234d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c-sharp/Problems/math/ReverseInteger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Reverse Integer
44
**
55
* Given a signed 32-bit integer x, return x with its digits reversed.
6-
* If reversing x causes the value to go outside the signed 32-bit integer range [-231, 231 - 1], then return 0.
6+
* If reversing x causes the value to go outside the signed 32-bit integer range [-2^31, 2^31 - 1], then return 0.
77
* Assume the environment does not allow you to store 64-bit integers (signed or unsigned).
88
*
99
* Example 1:

0 commit comments

Comments
 (0)