백준알고리즘 1008번 A/B
2024. 11. 25. 12:31ㆍAlgorithms/백준알고리즘 연습
A, B = (input(), split())
print(a/b)
a, b = map(int, input().split())
print(a/b)
처음만든코드와 나중에 만든 정답 코드
what's the key difference?
- map(int, input().split()):
- Processes the input into two integers and unpacks them.
- map(int, ...) converts each string in the list to an integer (e.g., [10, 20]).
- The two integers are unpacked into variables A and B.
- (input(), split()):
- Is invalid because split() is not called on a string, and unpacking into A, B doesn’t make sense here.
'Algorithms > 백준알고리즘 연습' 카테고리의 다른 글
백준 일반 수학 1 (0) | 2024.12.04 |
---|---|
백준 2차원 배열 (0) | 2024.12.02 |
백준 심화 1 (2) | 2024.12.01 |
백준 알고리즘 1차원배열 10807, 10871, 10818, 2562, 10810, 10813, 5597, 3052, 10811, 1546 번 (1) | 2024.11.28 |
백준 알고리즘 10926번 (0) | 2024.11.25 |