FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Python-Programs/CoinChange.py at master · Scarlet-Coder/Python-Programs · GitHub
Scarlet-Coder
/
Python-Programs
Public
forked from
codehouseindia/Python-Programs
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Python-Programs
/
CoinChange.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (26 loc) · 734 Bytes
Breadcrumbs
Python-Programs
/
CoinChange.py
Copy path
File metadata and controls
33 lines (26 loc) · 734 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Recursive Python3 program for
# coin change problem.
# Returns the count of ways we can sum
# S[0...m-1] coins to get sum n
def
count
(
S
,
m
,
n
):
# If n is 0 then there is 1
# solution (do not include any coin)
if
(
n
==
0
):
return
1
# If n is less than 0 then no
# solution exists
if
(
n
<
0
):
return
0
;
# If there are no coins and n
# is greater than 0, then no
# solution exist
if
(
m
<=
0
and
n
>=
1
):
return
0
# count is sum of solutions (i)
# including S[m-1] (ii) excluding S[m-1]
return
count
(
S
,
m
-
1
,
n
)
+
count
(
S
,
m
,
n
-
S
[
m
-
1
] );
# Driver program to test above function
arr
=
[
1
,
2
,
3
]
m
=
len
(
arr
)
print
(
count
(
arr
,
m
,
4
))
# This code is contributed by Smitha Dinesh Semwal
Back
|
FazBrowse Home
|
New Git URL