Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Task: Generate All Possible Sequences of Coin Flips of Length n In this part of the assignment, you will write a function that, when given

Task: Generate All Possible Sequences of Coin Flips of Length n
In this part of the assignment, you will write a function that, when given a positive integer n, will return all possible sequences of coin flips of length n (i.e., all possible strings of length n that only contain H and T).
When the program is executed, it will generate all possible coin flips of length n =1,2, and 3. This is done for you in the code we have provided at the bottom of the program (between the two ### DO NOT MODIFY ### comments). Below the # YOUR CODE HERE comment, you will write a recursive function called generate_flips which has a single parameter (n) and which returns a list containing all possible strings of length n that only contain H and T. The order of the strings does not matter. Your function must be recursive.
For example, when you run your program, your program should print the following (where the coin flips in each list can be in any order):
['H','T']
['HH','HT','TH','TT']
['HHH','HHT','HTH','HTT','THH','THT','TTH','TTT']
Note: Your function must be recursive with respect to n, but you are allowed to use loops within the Recursive Case or Base Case

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Internals A Deep Dive Into How Distributed Data Systems Work

Authors: Alex Petrov

1st Edition

1492040347, 978-1492040347

More Books

Students also viewed these Databases questions