Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
0
04_homework_daxiong
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
大雄
04_homework_daxiong
Commits
bde0d58f
Commit
bde0d58f
authored
Feb 21, 2019
by
大雄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
z字行变换作业
parents
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
z_convert.py
+25
-0
No files found.
z_convert.py
0 → 100644
View file @
bde0d58f
class
solution
:
# step = 1
def
convert
(
self
,
s
,
numrow
):
if
numrow
==
1
:
return
s
L
=
[
''
]
*
numrow
step
=
1
index
=
0
if
numrow
>=
1
:
for
x
in
s
:
# for循环后面有冒号:
L
[
index
]
=
L
[
index
]
+
x
if
index
==
0
:
step
=
1
elif
index
==
numrow
-
1
:
step
=
-
1
index
+=
step
return
''
.
join
(
L
)
sol
=
solution
()
s
=
"LEETCODEISHIRING"
numrow
=
4
sol
.
convert
(
s
,
numrow
)
print
(
sol
.
convert
(
s
,
numrow
))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment