# 버그를 찾아라: Data Engineering > 코드 한 조각. 버그를 찾거나, 버그가 없음을 증명하세요. 데일리 챌린지: 2026-08-19 (UTC) · Senior ```python from typing import Callable class PipelineEventBus: def __init__(self): self._subscribers: list[Callable] = [] def subscribe(self, callback: Callable): self._subscribers.append(callback) def publish(self, event: dict): for sub in self._subscribers: sub(event) bus = PipelineEventBus() bus.subscribe(lambda e: metrics.record(e)) bus.subscribe(lambda e: alerting.notify(e)) bus.subscribe(lambda e: audit_log.write(e)) def on_batch_complete(batch_id: str): bus.publish({"type": "batch_complete", "batch_id": batch_id}) ``` ## 당신의 판단 - 보안 취약점 - 로직 버그 - 코드 스타일 - 문제 없음 하루 한 번. 제출하면 바로 정답이 표시됩니다. --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/ko/daily/data-engineering