Convert a Number to Hexadecimal

Given a 32-bit integer num, return a string representing its hexadecimal representation. For negative integers, two’s complement method is used.

All the letters in the answer string should be lowercase characters, and there should not be any leading zeros in the answer except for the zero itself.

Note: You are not allowed to use any built-in library method to directly solve this problem.

Example 1
Inputnum = 26
Output"1a"
The decimal number 26 is represented as 1a in hexadecimal.
Example 2
Inputnum = -1
Output"ffffffff"
Using 32-bit two’s complement, -1 is represented as ffffffff in hexadecimal.

Constraints

  • -2^31 <= num <= 2^31 - 1

Asked at 6 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate