given an array of lenght 2n+2 in which every number except for two numbers repeat twice each.. and we have to figure out what they are.
Development Engineer Interview Questions
37,113 development engineer interview questions shared by candidates
Second Round: This was a bit difficult. The question is to generate sample math problems(additions) for a 8th grade student and the results should be stored in such a way that they can be printed when required. Sample problem is 7+8=_____ The constraints are:- 1) The numbers that are to be added should be <=9 2) The result should be <=17
Pretend that an end user is providing you with input. In this case, it's a math equation, such as (3+2)*4-1. Parse the input and display the answer.
The general approach problem was: search for phone numbers in 50,000 files. This is a one time need. You have 2 days.
Q: forgot the specifics but there were many questions
leadership principle questions
Write a function that accepts an array of tickets, where ticket has format [source: string, destination: string] and returns comma separated countries in order of visiting. function getRoute(tickets){ return 'USA,BRA,UAE,JPN,PHL'; // implement logic here } const result = getRoute([['JPN', 'PHL'], ['BRA', 'UAE'], ['USA', 'BRA'], ['UAE', 'JPN']]); console.log(result); Example: Tickets: [["JPN", "PHL"], ["BRA", "UAE"], ["USA", "BRA"], ["UAE", "JPN"]] Result: "USA, BRA, UAE, JPN, PHL
Many data structure and algorithmic questions
Tell me the basic component of Object Orient Programming.
Given a sorted array of integers, write a function to remove any duplicates (e.g. 1,2,3,3,3,4,4,5 would go to 1,2,3,4,5)
Viewing 651 - 660 interview questions