Q: How do you solve this generic coding problem? (standard types you would see if you search for "practice coding problems")
Machine Learning Research Engineer Interview Questions
1,840 machine learning research engineer interview questions shared by candidates
What would you do if a model does not perform as expected?
live coding medium leet code problem
Leetcode Questions How would you design a recommendation system at Pinterest?
Describe a project where there were multiple alternatives from which to choose in implementing it.
What kind of project are you doing? Some JAVA and Python question?
Print strings "Ivani" "is" "cool" based on certain criteria. Some noxious self bragging here.
Implement k-means, how would you make it scale to a large datasets. How would you test it (unit tests) ?
(onsite interview round 5): Edit distance There is a big file, it contain lots of words. given the first word and second word, check whether the words are in the path of edit distance e.g. File input: 'aaaa' 'aaab' 'abab' 'acdb' 'almn' 'abbb' Word1: 'aaaa' Word2: 'abbb' Output: True Explaination: Yes. There is an edit distance path from 'aaaa' to 'abbb' 'aaaa' -> 'aaab' -> 'abab' -> 'abbb'
( Onsite interview Round 1 ): Programming: Given an array, find whether it has any contiguous sub-array with the sum equal to target value e.g. input: arr = [1,2,3,4,5] target = 7 output: [3,4]
Viewing 31 - 40 interview questions