강의

멘토링

커뮤니티

Inflearn Community Q&A

thinkjoji1905's profile image
thinkjoji1905

asked

Introduction to Python Algorithm Problem Solving (Coding Test Preparation)

4. Merge two lists

list.sort

Written on

·

213

0

list에 내장되어 있는 sort함수를 사용하지 말고 풀어야만 하는건가요??

내장 되어 있는 함수들을 사용하지 말고 알고리즘 푸는걸 연습해야 되는건가요??

python코테 준비 같이 해요!

Answer 2

2

codingcamp님의 프로필 이미지
codingcamp
Instructor

안녕하세요^^

내장함수를 쓰지 말하는 것은 아닙니다. 문제를 풀기 위해서 내장함수를 적극 활용해야 합니다.

다만 이 문제는 이미 정렬되어 입력되기 때문에 영상처럼 하는 방법이 내장함수를 쓰는 것보다 시간복잡도가 더 좋다는 것을 말한 것입니다.

0

jiheon jo님의 프로필 이미지
jiheon jo
Questioner

답변 감사합니다.

thinkjoji1905's profile image
thinkjoji1905

asked

Ask a question