leetcode1271

Posted AsenYang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1271相关的知识,希望对你有一定的参考价值。

 1 class Solution:
 2     def toHexspeak(self, num: str) -> str:
 3         dic = {a:A,b:B,c:C,d:D,e:E,f:F,1:I,0:O}
 4         dn_10 = int(num)
 5         dn_16 = hex(dn_10)#10进制转16进制
 6         str_16 = str(dn_16)[2:]#去掉前缀 0x
 7         r = ‘‘
 8         for i in range(len(str_16)):
 9             if str_16[i] in dic:
10                 r += dic[str_16[i]]
11             else:
12                 return ERROR
13         return r

 

以上是关于leetcode1271的主要内容,如果未能解决你的问题,请参考以下文章

LEETCODE - 1271十六进制魔术数字

leetcode-第14周双周赛-1271-十六进制魔术数字

bzoj1271 秦腾与教学评估

leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段

SSL 1271堆排序I

Leetcode.1024 视频拼接