Sobes.tech

What is the difference between threading and asyncio?

Senior
АВ Софт
112

Why did you decide to switch to development?

Middle+
Позитив Технолоджис
112

```python from collections import Counter def min_s(a: str, s: str) -> str: need = set(a) window = Counter() res = "" c = 0 left = 0 best_len = float('inf') for right, char in enumerate(s): if char in need: window[char] += 1 if window[char] == 1: c += 1 while c == len(need): if right - left + 1 < best_len: res = s[left:right + 1] best_len = right - left + 1 if s[left] in need: window[s[left]] -= 1 if window[s[left]] == 0: c -= 1 left += 1 return res ```

Intern
Яндекс
112

Can you give an example of using a context manager in Python?

Junior — Middle
112

Can you explain the differences between asynchronous and parallel execution of operations?

Junior — Middle
Код Открытия
LuckyGroup
112

Does Sentry process system response time information?

Junior — Middle
112

What questions would you like to ask about the company during the interview?

Intern — Junior
КодтехКодтех
WildberriesWildberries
МТСМТС
+8
112

Explain the mechanism of the for loop in Python.

Junior — Middle
112

What criteria are important to you when reviewing and approving a pull request?

Junior — Middle
112

What reasons explain the interpretative nature of the Python language?

Junior — Middle
112

In what cases and frameworks is the frozenset data type used in Python?

Junior — Middle
112

Can you explain what is meant by the term 'application server'?

Junior — Middle
Медси
112

What potential difficulties may arise when scaling Celery with a large number of workers?

Junior — Middle
112

Where can you view the original SQL query in the system or tool?

Junior — Middle
112

Can you explain what the principle of composition means in object-oriented programming?

Junior — Middle
СБЕР Бизнес
АО К-Технологии
112

What is the largest amount of data you have had to store in a database?

Junior — Middle
ЯндексЯндекс
Диджитал сектор
112

Can you tell about your main responsibilities and participation in the previous project?

Junior — Middle
Табрис
112

What is your notice period for resignation?

Senior
Addepar
112

How do you assess your skills and experience in building and maintaining data processing systems?

Junior — Middle
112

Do you have experience using MobX for state management in applications?

Junior — Middle
SunlightSunlight
112
/547