The hiring process at Luxolis takes an average of 7 days when considering 1 user submitted interviews across all job titles. Candidates applying for Deep Learning Engineer had the quickest hiring process (on average 7 days), whereas Deep Learning Engineer roles had the slowest hiring process (on average 7 days).
I applied online. I interviewed at Luxolis (Seoul)
Interview
Pretty standard interview process, but it quickly became unprofessional after the first two interviews. The interviewer did not show up for the follow-up interview, and ignored all attempts of communication.
It's completely fine if a company wants to move forward with a different candidate; just be professional and communicate your intentions. Don't waste a potential candidate's time by not showing up to a scheduled interview!
Interview questions [1]
Question 1
General questions about background, experience and fit in the role.
I applied online. The process took 1 week. I interviewed at Luxolis (New Delhi) in Jul 2025
Interview
Gave me an coding test on hackerank beforehand. coding test had 6 questions -3 on DSA, 1 HTML, 1 CPP problem on OOPS and 1 code review. Had the interview with the CEO and then with the engineering head on the same day.
Interview questions [1]
Question 1
Normal introductory interview, talked about my experience and some problems they were facing with their product.
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".