Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For many years people have been attempting to send and receive hidden messages without others knowing. The goal of this MiniProject is to use your

For many years people have been attempting to send and receive hidden messages without others knowing.
The goal of this MiniProject is to use your knowledge of strings and characters, along with the table below, to decipher a secret word!
Write a function called Decoder that takes the input string inString, and performs the following tasks:
Separate out the numbers and letters/symbols and put them into two separate arrays.
Use the table above to change the symbols in the array into letters to uncover a hidden message.
The function call is: [numbers, letters_symbols, secret]= Decoder(inString)
The input argument, inString, is a random string scalar including mixed numbers, letters, and symbols.
The output arguments:
numbers: A string scalar that includes all of the numbers in inString with the same order.
letters_symbols: A string scalar that includes all of the letters and symbols in inString with the same order.
secret: A string scalar that includes all of the characters in letters_symbols, however, with the symbol to letter conversion as used above. There should only be letters in this output.

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

Advanced MySQL 8 Discover The Full Potential Of MySQL And Ensure High Performance Of Your Database

Authors: Eric Vanier ,Birju Shah ,Tejaswi Malepati

1st Edition

1788834445, 978-1788834445

Students also viewed these Databases questions