Skip to content

Commit 22d6a00

Browse files
add 6
1 parent abf9860 commit 22d6a00

File tree

3 files changed

+49
-1
lines changed

3 files changed

+49
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ LeetCode
99
|0003|[Longest Substring Without Repeating Characters](https://leetcode.com/problems/total-hamming-distance/) | c | [c++](./src/0003-Longest-Substring-Without-Repeating-Characters/0003.cpp) |[python](./src/0003-Longest-Substring-Without-Repeating-Characters/0003.py)|||Medium|
1010
|0004|[Median of Two Sorted Arrays](https://leetcode.com/problems/median-of-two-sorted-arrays/) | c | [c++](./src/0004-Median-of-Two-Sorted-Arrays/0004.cpp) |[python](./src/0004-Median-of-Two-Sorted-Arrays/0004.py)|||Hard|
1111
|0005|[Longest Palindromic Substring](https://leetcode.com/problems/longest-palindromic-substring/) | c | [c++](./src/0005-Longest-Palindromic-Substring/0005.cpp) |[python](./src/0005-Longest-Palindromic-Substring/0005.py)|||Medium|
12-
|0006|[ZigZag Conversion](https://leetcode.com/problems/third-maximum-number/) | c | [c++]() |python|||Medium|
12+
|0006|[ZigZag Conversion](https://leetcode.com/problems/third-maximum-number/) | c | [c++](./src/0006-ZigZag-Conversion/0006.cpp) |[python](./src/0006-ZigZag-Conversion/0006.py)|||Medium|
1313
|0007|[Reverse Integer](https://leetcode.com/problems/arithmetic-slices/) | c | [c++]() |python|||Easy|
1414
|0008|[String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi) | c | [c++](./src/0010-Regular-Expression-Matching/0010.cpp) |[python](./src/0010-Regular-Expression-Matching/0010.py)|||Medium|
1515
|0009|[Palindrome Number](https://leetcode.com/problems/split-array-largest-sum/) | c | [c++]() |python|||Easy|

src/0006-ZigZag-Conversion/0006.cpp

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#include <string>
2+
#include <vector>
3+
using namespace std;
4+
static int x = []() {std::ios::sync_with_stdio(false); cin.tie(0); return 0; }();
5+
6+
class Solution
7+
{
8+
public:
9+
string convert(string s, int numRows)
10+
{
11+
if (numRows == 1 or s.size() < numRows) return s;
12+
vector<string> L(numRows, "");
13+
int index = 0, step = 1;
14+
for (auto ch : s)
15+
{
16+
L[index] += ch;
17+
if (index == 0) step = 1;
18+
else if (index == numRows - 1) step = -1;
19+
index += step;
20+
}
21+
string res;
22+
for (auto& s : L) res += s;
23+
return res;
24+
}
25+
};

src/0006-ZigZag-Conversion/0006.py

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
class Solution:
2+
def convert(self, s, numRows):
3+
"""
4+
:type s: str
5+
:type numRows: int
6+
:rtype: str
7+
"""
8+
9+
if numRows == 1 and len(s) < numRows:
10+
return s
11+
12+
L = [''] * numRows
13+
index, step = 0, 1
14+
15+
for x in s:
16+
L[index] += x
17+
if index == 0:
18+
step = 1
19+
elif index == numRows -1:
20+
step = -1
21+
index += step
22+
23+
return ''.join(L)

0 commit comments

Comments
 (0)