J'ai passé un entretien chez Diabolocom en sept. 2024
Entretien
There are more stages, and they usually specify it in description.
First is a hackerranck test. Then some live coding + system design.
Unfortunately they don't have a culture with much respect for employee, but if you have no other option you can join.
Questions d'entretien [2]
Question 1
Given an array of numbers, combine them in all possible pairs.
Count the pairs that respect the conditions:
max(|x-y|,|x+y|)>=max.(|x|,|y|)
min(|x-y|,|x+y|)<=min.(|x|,|y|)
Given m tasks for n threads, and the position k of a thread within those n. Find maximum number of task that can be given to k-th thread, by respecting two rules: each thread has at least one task + adjacent threads differ by no more than one task count.