
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
<강의 5-3 다익스트라 구현>에서,
마지막에 실행 테스트를 했더니 아래와 같은 메시지가 뜨네요.
C:\Users\User\Pycharm\SpartaAlgorithm\.venv\Scripts\python.exe C:\Users\User\Pycharm\SpartaAlgorithm\PythonPrac\5th_week\test.py
Traceback (most recent call last):
File "C:\Users\User\Pycharm\SpartaAlgorithm\PythonPrac\5th_week\test.py", line 28, in <module>
n, m = map(int, input().split()) # n: 노드(node)의 수 , m: 간선(edge)의 수, map(int, input().split(): input으로 들어 온 걸 둘로 쪼개라.
^^^^^^^
UnicodeDecodeError: 'cp949' codec can't decode byte 0xeb in position 7: illegal multibyte sequence
Process finished with exit code 1
