[Python] SWExpert - 창용 마을 무리의 개수(D4)
문제출처 - https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWngfZVa9XwDFAQU&categoryId=AWngfZVa9XwDFAQU&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com def dfs(graph, start): visit = [] stack = [start] while stack: node = stack.pop() if node not in visit: visit.append(node) stack.extend(graph[node]) return visit t = int(i..
ALGORITHM/SW Expert
2020. 4. 17. 03:36
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 백준
- 구현
- 우선순위큐
- Permutation
- 코딩테스트
- Python
- left join
- SW Expert
- 재귀
- 문자열
- 딕셔너리
- 2020 KAKAO BLIND RECRUITMENT
- 괄호
- BOJ
- 힙
- 해시
- 파이썬
- hash
- 2019 Kakao Blind Recruitment
- 완전탐색
- combination
- dictionary
- 프로그래머스
- 정렬
- SWExpert
- 문자열처리
- 순열
- 스택
- C++
- programmers
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함