diff --git "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/6.6-Z \345\255\227\345\275\242\345\217\230\346\215\242/solution.md" "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/6.6-Z \345\255\227\345\275\242\345\217\230\346\215\242/solution.md" index 662ad73f9ab07ae43474ee4c705641889c0c79a5..1ab044d8d2484cc0ac20abfe3f4ab566f61519a0 100644 --- "a/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/6.6-Z \345\255\227\345\275\242\345\217\230\346\215\242/solution.md" +++ "b/data/2.\347\256\227\346\263\225\344\270\255\351\230\266/3.leetcode-\345\255\227\347\254\246\344\270\262/6.6-Z \345\255\227\345\275\242\345\217\230\346\215\242/solution.md" @@ -4,7 +4,6 @@ 比如输入字符串为 `"PAYPALISHIRING"` 行数为 `3` 时,排列如下: - ``` P A H N A P L S I I G @@ -15,15 +14,12 @@ Y I R 请你实现这个将字符串进行指定行数变换的函数: - ```c string convert(string s, int numRows); ``` **示例 1:** - - **输入:** s = "PAYPALISHIRING", numRows = 3 **输出:** "PAHNAPLSIIGYIR" @@ -46,7 +42,6 @@ P I **示例 3:** - **输入:** s = "A", numRows = 1 **输出:** "A"