Search topics...
All Problems

Convert a Number to Hexadecimal

Solution Approach
Was this helpful?
EasybitsExpected: O(1) bounded by 8 hex digits for 32-bit integer time, O(1) space
bit-manipulationmath

Problem

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.

Constraints: -2^31 <= num <= 2^31 - 1

Example 1:

Input: num = 26
Output: "1a"

Example 2:

Input: num = -1
Output: "ffffffff"
Reference solution unlocks after your first submission
Loading...