Question: Write a function called isValidTune that will determine whether or not a given string of arbitrary length is composed exclusively of notes written in valid
Write a function called isValidTune that will determine whether or not a given string of arbitrary length is composed exclusively of notes written in valid SPN.
Function Specifications:
The function name: isValidTune
Parameters (Your function should accept these parameters IN THIS ORDER):
string input: The string whose validity should be examined (any length)
Return Value: True if the input is in SPN, false otherwise (bool)
The input string is only considered valid SPN if it consists only of notes within SPN (see examples for more details).
The function should make use of your isValidNote function from question 1.
If the string is empty, then it should not be considered valid SPN and your function should return false.
The function should not print anything.
--- Examples ---
| Sample function call | Expected return value |
|---|---|
| isValidTune("A2B4C7") | True |
| isValidTune("M5D2E1") | False |
| isValidTune("A5D2E11") | False |
| isValidTune("Hello1300") | False |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
