Santa and Banta want to play the 'The Vendor Game'. Game Rules: Both players are given the same string. Both players have to make substrings using the letters of the string . Santa has to make words starting with consonants, while Banta has to make words starting with vowels. The game ends when both players have made all possible substrings. Scoring: A player gets +1 point for each occurrence of the substring in the string . For Example: String = BANANA Banta's vowel beginning word = ANA Here, ANA occurs twice in BANANA. Hence, Banta will get 2 Points. For better understanding, see the image below: BANANA Santa Banta Words Points Words Points B 1 A 3 N 2 AN 2 BA 1 ANA 2 NA 2 ANAN 1 BAN 1 ANANA 1 NAN 1 BANA 1 NANA 1 BANAN 1 BANANA 1 Total 12 Total 9 Function Description: Write a Program to determine the Winner and their score.
Santa and Banta want to play the 'The Vendor Game'.
Game Rules:
Both players are given the same string.
Both players have to make substrings using the letters of the string .
Santa has to make words starting with consonants, while Banta has to make words starting with vowels.
The game ends when both players have made all possible substrings.
Scoring: A player gets +1 point for each occurrence of the substring in the string .
For Example:
String = BANANA
Banta's vowel beginning word = ANA
Here, ANA occurs twice in BANANA. Hence, Banta will get 2 Points.
For better understanding, see the image below:
BANANA | |||
Santa | Banta | ||
Words | Points | Words | Points |
B | 1 | A | 3 |
N | 2 | AN | 2 |
BA | 1 | ANA | 2 |
NA | 2 | ANAN | 1 |
BAN | 1 | ANANA | 1 |
NAN | 1 | ||
BANA | 1 | ||
NANA | 1 | ||
BANAN | 1 | ||
BANANA | 1 | ||
Total | 12 | Total | 9 |
Function Description:
Write a
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images