Make recipe APIs for HelloFresh
Desarrollador De Python Senior Interview Questions
98,061 desarrollador de python senior interview questions shared by candidates
Asked to write a method were it's passed an array of numbers and a single number. I needed to return true if there was two numbers in the array that if added totaled the single number. I was then asked to rewrite it to make it run faster.
Give an algorithm to find the kth largest element in an unsorted vector of integers.
It was easy... consist of puzzles & case studies.
One bridge, 4 people. A, B, C, D. A takes 2 mins to cross the bridge, B 4 mins, C 8 mins, D 16mins. It is dark and 1 torch. So, 2 people need to cross the bridge at the same time, so that one person can bring back the torch for the next group to cross the bridge. The 2 pepole group walks at the pace of the slower walker. How to cross the bridge in the fasted way?
# a list of strings. Each string is a management / report relationship. # # EXAMPLE INPUT: # # [ # 'B,E,F', # 'A,B,C,D', # 'D,G,I', # 'G,H' # ] So, write some code (pseudo or language of your choice, including SQL) for the following: A is the manager of B, C, D. B is the manager of E and F, and so forth. # EXAMPLE OUTPUT: # # A # ....B # ........E # ........F # ....C # ....D # ........G # ............H # ........I
Implement atoi and itoa
Print numbers 1 to 100 in sequence using multiple threads.
What is the efficiency of finding an element in an unsorted array of strings
Find the largest sum of contiguous numbers in an array
Viewing 81 - 90 interview questions