# type()
x = 5
y = "Hello"
z = [1, 2, 3]
print(type(x)) # <class 'int'>
print(type(y)) # <class 'str'>
print(type(z)) # <class 'list'>
자료형을 파악할 수 있다.
# 숫자리스트, 따로따로 출력하기
my_list = [1, 2, 2, 1, 1]
print(*my_list)
# 결과: 1 2 2 1 1
숫자리스트 따로따로 출력하기
# 문자리스트, 따로따로 출력하기
my_list = ['1', '2', '2', '1', '1']
print(' '.join(my_list))
# 결과: 1 2 2 1 1
문자리스트 따로따로 출력하기
# 리스트, 요소 제거
1. del, 인덱스로 삭제
my_list = [1, 2, 3, 4, 5]
del my_list[2] # 인덱스 2의 요소 삭제
2. remove(), 값으로 삭제
my_list = [5, 9, 12, 1, 17]
my_list.remove(12) # 값이 12인 요소 삭제
3. 리스트 슬라이싱
my_list = [5, 9, 12, 1, 17]
my_list = my_list[:2] + my_list[3:] # 인덱스 2의 요소를 제외하고 새로운 리스트 생성
4. pop() 메서드 사용
my_list = [5, 9, 12, 1, 17]
num = my_list.pop(2) # 인덱스 2의 요소를 반환하고 삭제
# deque
from collections import deque
여기있다.
선언: arr = deque()
시용: arr.popleft() 왼쪽부터 pop() 가능
# 문자를 바로 숫자리스트로 변경
0100 => [0, 1, 0 ,0]
temp = list(map(int, input()))
# 우선순위 큐(Priority Queue)
from queue import PriorityQueue
라고 하면 우선순위 큐를 불러올 수 있다.
2개만 기억하면됨.
1. 초기화
2. 사용(get(), put())
1. 초기화
que = PriorityQueue()
2. put(), 우선순위 큐에 원소 추가
que.put(4)
que.put(1)
que.put(7)
que.put(3)
3. get()
print(que.get()) # 1
print(que.get()) # 3
print(que.get()) # 4
print(que.get()) # 7
작은 순서대로 뽑아짐.
내부적으로 heap모듈을 사용해서 우선순위 큐가 구성되어있기 때문에
시간복잡도는
get(): O(log n)
put(): O(log n)
# 가장 큰 정수
INF = float('inf')
# 2차원 배열
move = [(0, 1), (1, 0), (-1, 0), (0, -1)]
# combinations, permutations
from itertools import combinations, permutations
combinations('ABCD', 2) => 2개씩 조합
combinations('객체', r)
'Programming > Algorithm(Python)' 카테고리의 다른 글
Short Circuit Evaluation - 정해진 결말 (0) | 2023.12.23 |
---|---|
[그리디, 투포인터] 프로그래머스 구명보트(파이썬) (0) | 2023.11.15 |
[DFS] leetcode 695번 Max Area of Island (0) | 2023.10.25 |
[DFS] leetcode 841번 Keys and Rooms, class이해 (2) | 2023.10.18 |
[구현] SWEA 10570 제곱 팰린드롬 수 (2) | 2023.10.16 |