본문 바로가기

알고리즘

[알고리즘] 파이썬 메모

입력 받아들이기

a,b,c = map(int, input.split())
nums = list(map(int, input.split())

 

입력 개수 = int(input())

for _ in range(N):
  각 입력 = int(input())

  ~

 


무한, : float("inf")

-무한, -: float("-inf")


array: [(1,2), (3,4), (5,6)] 일 때

array.sort(key=lambda x: x[0])

array.sort(key=lambda x: x[1])

'알고리즘' 카테고리의 다른 글

[알고리즘] 반복법, 재귀법 개념 이해  (0) 2022.05.25
[알고리즘] 정렬  (0) 2022.05.18
[알고리즘] 자료구조 (파이썬)  (0) 2022.05.16