I applied in-person. The process took 1 week. I interviewed at ARxIUM in Mar 2024
Interview
I was interviewed in two steps, the first one was a simple acquaintance with the usual simple questions, mainly about the projects I participated in. The second was technical with two easy tasks: removing duplicates in a string and selecting and grouping data from a table without using “Group By”
Interview questions [3]
Question 1
How to remove duplicates in a string?
like transforming "aaabbbcccaaabc" to "abc"
and transforming strict duplicates like "aaabbbcccaaabc" to "abcabc"