Assignment on Mac
Lead Ios Developer Interview Questions
3,197 lead ios developer interview questions shared by candidates
Implement an auto complete function. Similar to what your phone or Google does when you start typing out a word it gives you possible suggestions. For example: lime might yield - ‘limebike’ 'limelight', 'limer', 'limes', 'limestone', ‘limewash’, etc. Write a function that takes an input and returns possible autocomplete suggestions for the given input. func autocomplete(prefix: String) -> [String] { }
Given this single API and an unlimited (space) input buffer, show how you would replace space characters with URL-encoded “%20”. void replaceSpaces(char *buffer); That is: “Hello World Twitch” would become “Hello%20World%20Twitch”
Find closest k restaurants out of 1 million restaurants from your location
How could you cancel a block in the operation queue after it has been dispatched?
Emphasis on algorithms and complexity analysis and some higher-level design. Process is perhaps more focussed on discussion of alternatives/trade-offs/complexity over necessarily nailing a "perfect" answer in the provided time.
What type of leader do you prefer to work for?
Q. What is different between notification and delegation?
It was included algorithms, computer science and programming languages questions.
stack or a heap, which is faster?
Viewing 61 - 70 interview questions