👔 Description Given the head of a singly linked list, reverse the list, and return the reversed list. Example 1: Example 2: Example 3: 👔 Solution 1. iteration 이번 문제는 풀이를 봐도 유독 원리가 이해가 되지를 않았다. 특히 대부분의 풀이에서 next = head.next와 같이 중복된 변수를 사용해 더 헷갈렸다. 그래서 직접 그림을 그려가며 이해했는