문제 LeetCode 6. ZigZag Conversion https://leetcode.com/problems/zigzag-conversion/ ZigZag Conversion - 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 언어 자바스크립트(JavaScript) 접근 방법 numRows 크기의 배열을 생성한다. 사이클의 크기를 계산한다. 사이클에 맞게 각 배열에 문자를 삽입한다. 각 배열의 문자를 합쳐 반환한다. 코드 /** * @param {string}..