Leetcode第6題ZigZag,Z 字形變換

今天刷了leetcode第6題,Z字形變換,後來終於解決了。這裏附上源碼: LinkedList[] list = new LinkedList[numRows]; for (int i = 0; i < numRows; i++) { list[i] = new LinkedList<Character>(); } int length = 0; while (length
相關文章
相關標籤/搜索