字符串"ZXYZXLISHIRING"写成3行的Z字形的样式如下: Z X H N X Z L S I I G Y I R 按行读这个Z字形图案应该是 "ZXHNXZLSIIGYIR" 请编写代码完成将字符串转化为指定行数的Z字形字符串:
示例1
输入
"AB",2
输出
"AB"
加载中...
import java.util.*; public class Solution { /** * * @param s string字符串 * @param nRows int整型 * @return string字符串 */ public String convert (String s, int nRows) { // write code here } }
class Solution { public: /** * * @param s string字符串 * @param nRows int整型 * @return string字符串 */ string convert(string s, int nRows) { // write code here } };
# # # @param s string字符串 # @param nRows int整型 # @return string字符串 # class Solution: def convert(self , s , nRows ): # write code here
/** * * @param s string字符串 * @param nRows int整型 * @return string字符串 */ function convert( s , nRows ) { // write code here } module.exports = { convert : convert };
# # # @param s string字符串 # @param nRows int整型 # @return string字符串 # class Solution: def convert(self , s , nRows ): # write code here
package main /** * * @param s string字符串 * @param nRows int整型 * @return string字符串 */ func convert( s string , nRows int ) string { // write code here }
"AB",2
"AB"