Skip to content

Latest commit

 

History

History
8 lines (5 loc) · 231 Bytes

File metadata and controls

8 lines (5 loc) · 231 Bytes

Reverse digits of an integer.

Example1: x = 123, return 321

Example2: x = -123, return -321

Note: The input is assumed to be a 32-bit signed integer. Your function should return 0 when the reversed integer overflows.