yuchaozh1991

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.
CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.
Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.
Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.
Same issue with your code. if the wrong number is at the end of the actual string, then your code is wrong. You can just add a checker before your checking.
- yuchaozh1991 October 15, 2014public class keypad
{
static boolean isValidPassword(String act, String exp)
{
if (act.length() == 0 && exp.length() == 0)
{
return true;
}
if (act.length() == 0)
return false;
char notWorkingPad = '0';
int j = 0;
for (int i = 0; i < exp.length(); i++)
{
if (j >= act.length())
{
if (notWorkingPad != exp.charAt(i))
{
return false;
}
}
if (exp.charAt(i) != act.charAt(j))
{
// get the not working pad
if (notWorkingPad == '0')
{
notWorkingPad = exp.charAt(i);
}
else
{
if (notWorkingPad != exp.charAt(i))
{
return false;
}
}
}
else
{
j++;
}
}
return true;
}
public static void main(String[] args)
{
System.out.println(isValidPassword("164", "164"));
System.out.println(isValidPassword("164", "1868888847665"));
}
}