【leetcode】第6题:ZigZag

今天看了下Leetcode上难度为easy的题目,看了下,确实很简单,但是!!!由于我的java实在太差,卡在输出上长达半个小时,真是醉了醉了。现在才意识到java基础还是很重要啊!!!

题目如下图所示:

【leetcode】第6题:ZigZag_第1张图片


package com.leetcode;

public class Solution6_ZigZag {
	public String convert(String s, int nRows){
		String result = new String();
		int len = s.length();
		/*定义一个循环周期长度,例如,第一个字符下标为i,那么这个周期的最后一个字符是
		*(nRows-1)*2
		*/
		int pipe = (nRows-1)*2;
		int n = 0;
		while(n0并且n0&&n

 
  


你可能感兴趣的:(LeetCode)