LeetCode: Reconstruct Original Digits from English
Posted chenxp2311
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode: Reconstruct Original Digits from English相关的知识,希望对你有一定的参考价值。
这道 LeetCode 上的题目,还是有点难度,有点意思的。就是要把给定的字符串中的英文,组合成 0,1,2,3,4,5,6,7,8,9 这几个数字的英文,再按升序将数字输出。
具体的,题目描述如下:
Given a non-empty string containing an out-of-order English representation of digits 0-9, output the digits in ascending order.
Note:
Input contains only lowercase English letters.Input is guaranteed to be valid and can be transformed to its original digits. That means invalid inputs such as “abc” or “zerone” are not permitted.
Input length is less than 50,000.
参考 discuss 部分,python 实现如下:
import collections
def originalDigits(self, s):
"""
:type s: str
:rtype: str
"""
dic = collections.Counter(s)
cnt = [0] * 10
cnt[0] = dic['z']
for d in 'zero': dic[d] = dic[d] - cnt[0]
cnt[2] = dic['w']
for d in 'two': dic[d] = dic[d] - cnt[2]
cnt[4] = dic['u']
for d in 'four': dic[d] = dic[d] - cnt[4]
cnt[6] = dic['x']
for d in 'six': dic[d] = dic[d] - cnt[6]
cnt[8] = dic['g']
for d in 'eight': dic[d] = dic[d] - cnt[8]
cnt[1] = dic['o']
for d in 'one': dic[d] = dic[d] - cnt[1]
cnt[3] = dic['r']
for d in 'three': dic[d] = dic[d] - cnt[3]
cnt[5] = dic['f']
for d in 'five': dic[d] = dic[d] - cnt[5]
cnt[7] = dic['v']
for d in 'seven': dic[d] = dic[d] - cnt[7]
cnt[9] = dic['i']
for d in 'nine': dic[d] = dic[d] - cnt[9]
output_s = ''
for i, c in enumerate(cnt):
output_s = output_s + str(i) * c
return output_s
提交结果如下:
参考链接:
1. https://discuss.leetcode.com/topic/63389/straightforward-python-solution-o-n
2. https://discuss.leetcode.com/topic/63396/naive-python-solution
以上是关于LeetCode: Reconstruct Original Digits from English的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode: Reconstruct Itinerary
[LeetCode] Reconstruct Itinerary 重建行程单
[LeetCode] Reconstruct Itinerary
Leetcode 332: Reconstruct Itinerary