id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

gaurav1780@gmail.com 03_loops > common_digit
prev  |  next  |  chance

Define a function that when passed two integers (say a, b), returns true if they have any digit in common, false otherwise. Note: you should return false if either number is 0, because 0 by itself, contains no digit.


common_digit(1729, 861350) → True
common_digit(17, 29) → False
common_digit(172, 91) → True

...Save, Compile, Run (ctrl-enter)

def common_digit(a, b):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Difficulty: 3 Post-solution available

Copyright Nick Parlante 2017 - privacy