Question
Python A kidnapper kidnaps you and writes a ransom note. He does not write it by hand to avoid having his hand writing being recognized,
Python
A kidnapper kidnaps you and writes a ransom note. He does not write it by hand to avoid having his hand writing being recognized, so he uses a magazine to create a ransom note. We need to find out, given the ransom string and magazine string, is it possible to create a given ransom note. The kidnapper can use individual characters of words.
Here is how your program should work to simulate the ransom problem:
- your program should prompt the user to enter a long String to represent the magazine and another short String to represent the required ransom note.
- your program needs to check if the magazine string contains all required characters in equal or greater number present in the ransom note.
- your program should print true if it is possible to create the given ransom note from the given magazine, and print false otherwise.
- Break up your code into a set of well-defined functions. Each function should include a comment block that briefly describes it, its parameters and any return values.
Example: If the magazine string is programming problems are weird
If the ransom note is: no see your program should print true as all the characters in no see exist in the magazine string.
If the ransom note is no show your program should print false as not all the characters in no show exist in the magazine string as you can see the character h does not exist.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started