From d19f6ea6794ad6ba0833e88e21be06871c3d3ba0 Mon Sep 17 00:00:00 2001 From: qq_44193969 Date: Thu, 18 Nov 2021 10:07:11 +0800 Subject: [PATCH] update exercises --- .../solution.md" | 5 ----- 1 file changed, 5 deletions(-) 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 662ad73f9..1ab044d8d 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" -- GitLab