I applied through a recruiter. The process took 4 days. I interviewed at Heidelberg Materials (Berlin) in Jun 2021
Interview
A recruiter reached me about the position and asked for many documents (diploma, reference letter, graduation grades).
I thought really strange but ok.
After that, they sent me a Sandbox with 3 technical challenges to be solved in 30 mins. They were not so trivial, impossible to solve in 30 mins so I gave the best solution I could for 30 mins.
The evaluator complained about everything in my solutions even lint errors.
If it was to be perfect don't say 30 mins.
Anyway, better of that way.
Interview questions [3]
Question 1
You will be given an array that may contain integers and/or array of integers. Your goal is to write a function that will sum up all intergers contains in the arrays.
For example, if the input is [[3, 2], [1], [4, 12], [2, [3,7]]] then your program should output 34 because 3 + 2 + 1 + 4 + 12 + 2 + 3 + 7 = 34.
Write a function called add wich will always return the sum of the previous result and the current input.
For example:
add(3) // 3
add(5) // 8
add(2) // 10
Question 3: ReactJS fetching + rendering
Fetch and render the deliveries in the table sorted by status and eta ascendant.
Status should be sorted in the following order: active, upcoming, pending.