Medior
19 augustus 2026

Vind de bug: Data Analytics

Eén stukje code. Vind de bug, of bewijs dat er geen is.

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 profiles

Klik op de regels die het probleem veroorzaken.

Jouw oordeel

Eén poging per dag. Het antwoord verschijnt direct daarna.

Behoud je reeks

Maak een account om je reeks te behouden en je voortgang te volgen.

Account aanmaken