编程语言
首页 > 编程语言> > LeetCode-1903. 字符串中的最大奇数_Python

LeetCode-1903. 字符串中的最大奇数_Python

作者:互联网

示例 1:

输入:num = “52”
输出:“5”
解释:非空子字符串仅有 “5”、“2” 和 “52” 。“5” 是其中唯一的奇数。

示例 2:

输入:num = “4206”
输出:""
解释:在 “4206” 中不存在奇数。

示例 3:

输入:num = “35427”
输出:“35427”
解释:“35427” 本身就是一个奇数。

提示:

1 <= num.length <= 10的5次方
num 仅由数字组成且不含前导零

程序代码

class Solution:
    def largestOddNumber(self, num: str) -> str:
        index = -1
        for i in range(len(num)):
            if int(num[i]) % 2 == 1:
                index = i
        return '' if index == -1 else num[0:index+1] 

标签:index,奇数,Python,示例,LeetCode,num,35427,字符串,1903
来源: https://blog.csdn.net/weixin_45344430/article/details/122527528