I applied online. The process took 2 months. I interviewed at Luxolis (Bucharest, Bucuresti) in Nov 2024
Interview
They contact you, and tell you to do a HackerRank test. It had 4 questions, that were way too advanced in my opinion for a person, who is entry level and fresh graduate. I got only 1 frontend question for a frontend job and the other ones were like easy-medium-hard leetcode type questions.
Interview questions [3]
Question 1
Create a responsive grid. PC: 1x4 grid. Tablet: 2x2. Mobile: 4x1 layout. Make all these cells able to hold another grid of the type above.
Labyrinth game: You start in a maze from the top left on the "." symbol. The goal is to reach the bottom right corner going through the "." marked areas. The walls are shown with "#". Complete these within the given number of steps.
steps = 4
arr = . . #
# . #
# . .
If you start from the top left corner, you can get to the bottom right using the dots within 4 steps.
Find the common sufix and prefixes of a word, using a suffixWord and prefixWord.
prefixWord = ba
suffixWord = abracadabrananaba
word = banana
your returned word is " banana " . Since the prefixWord contains "ba"
and the suffixWord contains the "nana".