[6] Z 字形变换

This commit is contained in:
Wen 2022-11-01 17:56:39 +08:00
parent a4e09c0f24
commit aa7f507cc1
1 changed files with 14 additions and 0 deletions

View File

@ -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