Implement a class called AirMap that has two methods: 1. add_route(start, destination) - adds ONE WAY connecting flight from one airport to another 2. print_all_routes(start, destination) - prints all possible routes from start to destination Given the following routes, print all possible routes between the airport C and D: A -----> B B -----> A A -----> C C -----> A A -----> D D -----> A B -----> C C -----> B B -----> D D -----> B Expected Output: C,A,B,D C,A,D C,B,A,D C,B,D
Sr Software Developer Interview Questions
97,963 sr software developer interview questions shared by candidates
What data structure would you use or design to implement a suggestion box for a user searching for someone in a telephone directory
They asked specific questions regarding my skills directly related to the job posting. They understood the position and
Lots of questions. First question was how to find the heaviest ball out of 9 ball problem.
There were some mathematical puzzles.
Create a class implementing iterator interface to go through AVL tree.
Simple OOPs question, a BFS problem, elementary number theory problem
Given an array of integers, find the maximum number that can be reached by summing the best possible consecutive subsequence of the array.
Given a list of versions (in string format). The versions can have invalid characters (requires cleaning). Print the list in sorted order of increasing versions. Input: ["1.2.34", "$5.j8", "3.4#", "3.45"] output: 1.2, 3.4, 3.45
So you're not a .Net developer?
Viewing 191 - 200 interview questions