码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode1317

时间:2020-01-12 11:30:58      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:div   return   class   判断   col   get   int   als   elf   

 1 class Solution:
 2     def isNonZeroNum(self,m):
 3         s = str(m)
 4         for i in range(len(s)):
 5             if s[i] == 0:
 6                 return False
 7         return True
 8 
 9     def getNoZeroIntegers(self, n: int) -> List[int]:
10         for i in range(1,n):
11             A,B = i,n-i
12             if self.isNonZeroNum(A) and self.isNonZeroNum(B):
13                 return [A,B]
14         return []

遍历[1,n-1],判断每组数字是否都不含0。

leetcode1317

标签:div   return   class   判断   col   get   int   als   elf   

原文地址:https://www.cnblogs.com/asenyang/p/12182116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!