본문 바로가기
알고리즘/leetcode

[leetcode/JS] 234. Palindrome Linked List / Javascript

by 질서정연_ 2022. 8. 27.

 

문제링크 

 

Merge Two Sorted Lists - 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

 

 

생각정리

 

기억하면 좋을 것 

1. 두 list를 비교 후 남은 node 처리 할 때

crt.next = list1 || list2

 

이렇게 깔끔하게 처리 해줄 수 있다. 

 

2. crt.next 를 지정 해 준 후 crt = crt.next 로 다음 노드로 이동 해 주어야 한다. 

 

소감

이 문제는 혼자서 해결이 안 돼서 다른 사람의 코드를 보고 공부하며 풀었다. 

오늘이 퇴근 후 알고리즘을 공부 한 지 3일째 되는 날이다

어찌됐든 작심3일은 한 거다.

조금씩 지식을 쌓아가자 !

 

해결 코드

 
 
 
 

 

댓글