Given a list of schedules, provide a list of times that are available for a meeting Example input: [ [[4,5],[6,10],[12,14]], [[4,5],[5,9],[13,16]], [[11,14]] ] Example Output: [[0,4],[11,12],[16,23]]
Front End Software Engineer Interview Questions
21,103 front end software engineer interview questions shared by candidates
Find the Kth hisghest element in a given array.
How many times would `addEventListener('scroll', handleScroll);` run as the user looks at their News Feed? And what would be user experience if the `handleScroll` function takes 100ms to execute.
Can you write a function that deeply flattens an array?
write a function and return true or false if there is a pair of number that sum up as 10.
Write a basic template engine class
Related to question 1, how could you implement debouncing? Say you wanted the `handleScroll` function to be called only after 200ms has passed between scroll events.
How do you draw a diagonal line on a page without using SVG/VML ?
Have you ever had a conflict with a coworker and how did you handle it?
How many characters in the front of a string would need to be added in order to make it a palindrome.
Viewing 31 - 40 interview questions