Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 15 Online
OpenStudy (anonymous):

solution to PS3 problem 2 using recursion: if you use recurion to solve this you have to call the function with 3 parameters : target, key and 0. Where 0 initializes the begining of where you want to start checking the string. In this recursive version I cant slice the string. from string import * # the code below is PS3 problelm 2 using recursion. #you have to call it with 3 parameters: target,key and 0 (as the begining point) # also it puts the indexes in a list instead of a tuple but that is an easy switch def match(t,k, beg): mylist= [] if find

OpenStudy (anonymous):

sorry some of this got cut off the first time def match(t,k, beg): mylist= [] if find(t,k,beg) >=0: mylist = [find(t,k,beg)] beg = find(t,k,beg)+1 mylist = mylist + match(t,k,beg) return mylist

OpenStudy (anonymous):

please us a code pasting site dpaste.com pastebin.com codepad.org and select Python for syntax highlighting

OpenStudy (anonymous):

not necessarily - but if you don't you may have to massage the result http://codepad.org/mP4T0PGl

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
Breathless: Spooky witch but cute
6 hours ago 3 Replies 0 Medals
Arriyanalol: help
5 hours ago 10 Replies 2 Medals
Arriyanalol: @tinydinoUwU stop trying to find a argument u blad lil boy
1 day ago 5 Replies 4 Medals
Jaded012023: Please tell me what you all think of this song
8 hours ago 6 Replies 1 Medal
Arriyanalol: bro how
8 hours ago 2 Replies 3 Medals
Arriyanalol: cant wait for the new bluey movie in 2027
1 day ago 12 Replies 2 Medals
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!