Mid-Level
August 19, 2026Spot the bug: Data Analytics
One snippet. Find the bug, or prove there isn't one.
python
1import asyncio
2import aiohttp
3
4async def fetch_user_data(user_id: int) -> dict:
5 async with aiohttp.ClientSession() as session:
6 url = f"https://api.example.com/users/{user_id}"
7 async with session.get(url) as resp:
8 return await resp.json()
9
10async def collect_profiles(user_ids: list[int]) -> list[dict]:
11 profiles = []
12 for uid in user_ids:
13 data = fetch_user_data(uid)
14 profiles.append(data)
15 return profilesClick the lines that carry the problem.
Your verdict
One attempt per day. The answer shows up right after.
Keep your streak
Create an account to keep your streak and track your progress.