Me postulé en línea. Acudí a una entrevista en Vanta en ago 2025
Entrevista
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.
Preguntas de entrevista [1]
Pregunta 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
Me postulé en línea. Acudí a una entrevista en Vanta (San Francisco, CA) en feb 2026
Entrevista
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.
Me postulé a través de una recomendación de un empleado. Acudí a una entrevista en Vanta en feb 2026
Entrevista
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.
Preguntas de entrevista [1]
Pregunta 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.
Me postulé a través de una recomendación de un empleado. Acudí a una entrevista en Vanta en ene 2026
Entrevista
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.
Preguntas de entrevista [1]
Pregunta 1
Leetcode style question that involved topological sorting