Skip to content

Files

Latest commit

author
Shuo
Nov 19, 2021
5792575 · Nov 19, 2021

History

History

convert-a-number-to-hexadecimal

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Nov 19, 2021
Nov 12, 2019
Nov 12, 2019

< Previous                  Next >

Given an 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:

Input: num = 26
Output: "1a"

Example 2:

Input: num = -1
Output: "ffffffff"

 

Constraints:

  • -231 <= num <= 231 - 1

Related Topics

[Bit Manipulation] [Math]