I applied online. I interviewed at Intuit (Tel Aviv-Yafo)
Interview
Technical interview that focused on problem-solving skills, similar to the style of questions often found on platforms like LeetCode.
I underwent a technical interview emphasizing problem-solving skills, resembling LeetCode-type questions. Subsequently, I engaged in a one-on-one interview with team members, evaluating interpersonal skills and team compatibility.
Interview questions [1]
Question 1
I was tasked with shuffling an array during the technical interview. Shuffling involves rearranging the elements randomly.
I applied online. The process took 1 day. I interviewed at Intuit (San Diego, CA) in Oct 2017
Interview
The question was one online question asked over an interviewing platform called karat. I was not able to answer the question and pass all of the test cases in the given time allotted (around 60 min.). I have not heard back from them
Interview questions [1]
Question 1
We have some input that describes the steps of a workflow. The input consists of pairs of steps, each one indicating that one step must be completed before another. For example, in sample input 1, "clean" must occur before "build" and "build" must occur before "link". The input can occur in any order.
We want to write a function to separate a given workflow's steps into multiple stages in such a way that all the steps in each individual stage can run at the same time. The function should return a list of lists. In which each list represents one stage. Each step should run in the earliest possible stage.
Sample Input 1:
precursor_steps = [
["clean", "build"],
["metadata", "binary"],
["build", "link"],
["link","binary"],
["clean", "metadata"],
["build","resources"]
]
Sample Output:
[
["clean"],
["build", "metadata"],
["resources","link"],
["binary"]
]
I applied online. The process took 4 weeks. I interviewed at Intuit (Edmonton, AB)
Interview
Phone interview, then given a week to work on small open ended project. Four guys in a small room to demo it for first round of interviews. Programming on paper. Didn't make the second round.