[6] Z 字形变换
This commit is contained in:
parent
a4e09c0f24
commit
aa7f507cc1
|
|
@ -0,0 +1,14 @@
|
|||
package leecode;/*
|
||||
* @lc app=leetcode.cn id=6 lang=java
|
||||
*
|
||||
* [6] Z 字形变换
|
||||
*/
|
||||
|
||||
// @lc code=start
|
||||
class Solution {
|
||||
public String convert(String s, int numRows) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
// @lc code=end
|
||||
|
||||
Loading…
Reference in New Issue