Implement method oneEditApart that return boolean: true, if using one operations (insert or remove or replace) we can modify one string to get another. False otherwise. // Signature: boolean oneEditApart(String s1, String s2) // Allowing operations insert remove replace Example: oea("cat", "cut") => true // replace "u" -> "a" oea("cat", "cuts") => false // no operations oea("ca", "ca") => false // no operations oea("cats", "cat") => true // remove "s" oea("cat", "at") => true // insert "c" oea("cat", "cbat") => true // remove "b"
Android Software Developer Interview Questions
598 android software developer interview questions shared by candidates
Which programming languages you are proficient at?
2nd skype: - Lets say you have to build an activity (screen) which has a drop-down & once you select an item in the drop-down, it loads an image corresponding to that on the screen below. - How will handle cases where user is very rapidly changing his selection from the drop down
Simple questions you would find in Cracking the Coding Interview
The questions were about android development and what makes a high-quality codebase, and SE design patterns, and some important concepts of android development. Live coding: normal coding questions in leetcode & hackerrank, nothing too difficult
NDA
Hashing
Replace every second character of a word in a text with a specific symbol
In the Skype interview he told me to write code on google doc, he had shared same to my mail. 1)print n'th node from the last of a linked list and it should be O(n).
write a recursive function that solves the equation X[n] = X[n-1] + X[n-2] where X is an array that contains at least two integer values and the function should solve the question for the 3rd value in the array
Viewing 1 - 10 interview questions