Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
1
1_homework_安晓东
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
安晓东
1_homework_安晓东
Commits
58181f12
Commit
58181f12
authored
Jan 11, 2019
by
牛家玺
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
批改
parent
c08071e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
homework_01.py
+28
-0
No files found.
homework_01.py
View file @
58181f12
# 时间复杂度较高 O(N^2)
def
numJewelsInStones
(
J
,
S
):
# count = 0
# for i in S:
...
...
@@ -8,3 +10,29 @@ def numJewelsInStones(J, S):
print
(
numJewelsInStones
(
"aA"
,
"aAAbbbb"
))
# 预期输出 3
# o(n)的版本
def
numJewelsInStones
(
J
,
S
):
stores
=
{}
for
c
in
S
:
if
c
in
stores
:
stores
[
c
]
=
stores
[
c
]
+
1
else
:
stores
[
c
]
=
1
count
=
0
for
c
in
J
:
if
c
in
stores
:
count
+=
stores
[
c
]
print
(
count
)
J
=
"aA"
S
=
"aAAbbbb"
numJewelsInStones
(
J
,
S
)
J
=
"z"
S
=
"ZZ"
numJewelsInStones
(
J
,
S
)
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