Google Interview Question for Software Engineers


Country: United States




Comment hidden because of low score. Click to expand.
1
of 1 vote

using binary search we can find

- pradeep January 19, 2020 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

def diff_char(s1, s2, idx=0):
	if idx >= len(s1) or idx >= len(s2) or s1[idx] != s2[idx]:
		return "MISMATCH AT INDEX {}".format(idx)
	return diff_char(s1, s2, idx+1)

- SK September 07, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Time complexity O(min(n, m))

def extra_char(s1: str, s2:str) -> str:
    max = s1
    min = s2
    if len(s2) > len(max):
        max = s2
        min = s1
    for c1, c2 in zip(max, min):  # O(min(n, m))
        if c1 != c2:
            return c1
    return max[-1]

- nicolarusso March 04, 2020 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

we can xor both strings individual ascii code . the result will the ascii code of the extra character

- bfmrck July 04, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

def findExtraChar(s,t):
if s in t:
return t.replace(s,'')
if t in s:
return s.replace(t,'')

"""xor two strings together"""
res = 0
# end and xor with res
for i in range(len(s)) :
# xor with res
res =res ^ (ord)(s[i])
# end and xor with res
for i in range(len(t)) :
# xor with res
res = res ^ (ord)(t[i])
return ((chr)(res))

- Eng.shaimaa.mohammed July 05, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

If the extra character is always at end then....

public static void main(String[] args) {

		String A = "abcjdfdkjsf";

		String B = "abcjdfdkjsfg";
		
		if(A.contains(B)) {
			System.out.println(A.substring(B.length()));
		}else if(B.contains(A)) {
			System.out.println(B.substring(A.length()));
		}
	}

- iamthem July 12, 2019 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

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.

Learn More

Resume Review

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.

Learn More

Mock Interviews

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.

Learn More