Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 1.23 KB

File metadata and controls

52 lines (32 loc) · 1.23 KB

中文文档

Description

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.

 

Example 1:

Input: num = 26
Output: "1a"

Example 2:

Input: num = -1
Output: "ffffffff"

 

Constraints:

  • -231 <= num <= 231 - 1

 

Follow up: Could you solve it without using any built-in library method?

Solutions

Python3

Java

...