J'ai postulé en ligne. J'ai passé un entretien chez Vanta en août 2025
Entretien
Another candidate mentioned this, but it bears repeating: the first interview is a coding screen conducted with another developer.
They provide a two-part problem:
Part One is a dense, "real-world" scenario that ultimately boils down to just 3–4 if statements checking deltas between inputs. It’s a trap and a major time sink. Spend no more than 15–20 minutes here. Most of the time is spent parsing the overly complex problem statement, not writing the code. In my case, the interviewer encouraged me to add extra tests, which ended up being unnecessary, and I easily spent 35–40 minutes on this section.
Part Two is where you are truly evaluated. It’s more complex and typically involves recursion—likely DFS. You’re given a list of groups with parent/child relationships (think org chart) where the relationships are represented by nested class objects. The task might include counting direct reports or similar traversals. After this you would then use the 3-4 if statements on each person in each group getting group aggerated data.
I ran out of time and was ultimately rejected.
Tip: If possible, ask the interviewer which part usually takes longer. You may be allowed to tackle the second part first, which can often be solved 99% without completing part one.
Questions d'entretien [1]
Question 1
Parse a complicated problem statement with your mind and the write 3-4 if statements.
Next traverse a nested class object, and for any given node return all children
J'ai postulé en ligne. J'ai passé un entretien chez Vanta (San Francisco, CA) en févr. 2026
Entretien
Really enjoyed the conversations, had a leetcode style phone interview. Onsite was 50% behavioral and 50% technical. System design + backend practical. Backend practical was coding plus understanding of distributed systems.
J'ai postulé via la recommandation d'un employé. J'ai passé un entretien chez Vanta en févr. 2026
Entretien
Talked to the recruiter and then scheduled a tech interview. The tech interview was 45 minutes with a senior engineer, but as usual my ADHD stepped up and doomed spiraled my brain into locking up. I didn't even remember that I have half a dozen working examples on my GitHub. "Code testing" so messed up for our career choice.
Questions d'entretien [1]
Question 1
Build a recursive function. I still can't believe this is used as an interview question. In my 25+ years as a software engineer, I can count the number of times I have use one on one hand. Actually on half a hand... There's is always a better choice than recursion.
J'ai postulé via la recommandation d'un employé. J'ai passé un entretien chez Vanta en janv. 2026
Entretien
I had a phone call with recruiter after which they scheduled a leetcode style coding problem for 1 hour. I am not certain if they had expectation of solving 2 problems in 1 hour because there was something being said about first we will solve this problem.
In any case, the 1st problem was on topological sorting and I solved it in python completely. At the end, I enevr got sent to next stage even after solving a medium difficulty problem involving topological sort not just some array sorting. I found that very strange and quite disappointing from interviewing standpoint.
Questions d'entretien [1]
Question 1
Leetcode style question that involved topological sorting