Candidatei-me online. O processo levou 3 semanas. Fui entrevistado pela Citadel em abr. de 2025
Entrevista
an online assessment with 2 coding questions, both were fairly standard programming tasks. I can't replicate them in words but I can give a general direction. They were leetcode style.
Perguntas de entrevista [2]
Pergunta 1
A leetcode question on DFS and with memoization. Given an undirected tree, You're asked to find the maximum node value sum on any path (path comprising of connected nodes) which goes in one direction (in other words, two nodes in the path don't have the same height or depth)
A binary search question where it's tricky to find whether it indeed is binary search. but it is. you have to binary search on the final answer (low= 0 and high = 1e9 guessed as per the variable constraints) and the final answer is calculated in n log n