I applied online. The process took 5 days. I interviewed at Playtech (Sofia, Sofia (city))
Interview
It was disgusting. First HR tells you there will be a test with closed questions and once you are in the office they are told you there will be no test, there will be 7 questions 2 of which are logic problems, 2 leet problems and only 3 Java questions.
P.S. All of this was on paper with a pen for 1.5 hours
Interview questions [7]
Question 1
Tell everything you know about the interface in Java
There are three boxes, one contains only apples, one contains only oranges, and one contains both apples and oranges. The boxes have been incorrectly labeled such that no label identifies the actual contents of the box it labels. Opening just one box, and without looking in the box, you take out one piece of fruit. By looking at the fruit, how can you immediately label all of the boxes correctly?
Deck of 52 cards, you need to calculate with what probability you pull out 1 time ace, and without returning the cards to the deck with what probability you pull out and the second time ace
Leetcode:
You are given an array prices where prices[i] is the price of a given stock on the ith day.
You want to maximize your profit by choosing a single day to buy one stock and choosing a different day in the future to sell that stock.
Return the maximum profit you can achieve from this transaction. If you cannot achieve any profit, return 0.
Leetcode:
Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
An input string is valid if:
Open brackets must be closed by the same type of brackets.
Open brackets must be closed in the correct order.
Every close bracket has a corresponding open bracket of the same type.