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

 

commonDigit


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.


commonDigit(1729, 861350) → true
commonDigit(17, 29) → false
commonDigit(172, 91) → true

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

boolean commonDigit(int a, int 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

Java Help

Misc Code Practice

Difficulty: 3 Post-solution available

Copyright Nick Parlante 2017 - privacy