1299: 【Python】(函数)数位检测

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:35 Solved:22

Description

定义一个函数check(n,d),让它返回一个布尔值。如果数字d在正整数n的某位中出现则送回True,否则送回False。
例如:check(325719,3)==True;check(77829,1)==False。

Input

一行两个正整数n和d,n<=2147483647,0<=d<=9。

Output

True或者False。

Sample Input Copy

325719 3

Sample Output Copy

True

Source/Category