Javarevisited

A humble place to learn Java and Programming better.

Follow publication

Member-only story

Reverse Integer (Solution For Leetcode Problem #7)

Suraj Mishra
Javarevisited
Published in
4 min readSep 3, 2021

--

Understanding Problem

if input_x = 345
return output_x = 543
if input_x = -345
return output_x = -543

My Thought About Solution

input_x = 345 
output_x = 543
input_x = -345
output_x = 543- // oops we need to handle sign as well .

Pseudocode

1: Get the sign of the input integer (if it is - integer) . We will append it to our result integer.
2: convert integer input to long input
3: get the absolute value of long input ( avoiding - sign)
4: get the string value of long input
5: reverse…

--

--

Javarevisited
Javarevisited

Published in Javarevisited

A humble place to learn Java and Programming better.

Suraj Mishra
Suraj Mishra

Written by Suraj Mishra

Staff Software Engineer @PayPal ( All opinions are my own and not of my employer )

No responses yet

Write a response