공부하고 기록하는, 경제학과 출신 개발자의 노트

프로그래밍/코딩테스트 문제풀이

[Python] LeetCode 56. merge intervals

inspirit941 2020. 11. 6. 11:32
반응형

leetcode.com/problems/merge-intervals/

 

Merge Intervals - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

겹치는 구간을 병합하는 문제.

파이썬의 리스트 병합문법 중 하나인 " , " 를 배웠다.

 

이 코드는 아래 책을 참고하였다.

파이썬 알고리즘 인터뷰
국내도서
저자 : 박상길
출판 : 책만 2020.07.15
상세보기

 

반응형