Please read the instructions carefully before starting the exam.
Once you start the exam, the timer will begin, and you cannot pause it.
Ensure that you complete and submit your code within the given time if the timer is enabled.
A customer support system stores user messages in a database. Before saving, the messages need to be sanitised to remove extra spaces, ensure consistent formatting, and replace prohibited words. Write a program that processes a given message and returns the sanitised version.
Implement a function that takes a string message
and performs the following operations:
****
".message
with a maximum length of 1000 characters.A sanitised string that follows the rules above.
Input:
Message: " hello world! this is a sample message. badword1 should not appear. "
Prohibited words: ["badword1", "badword2"]
Output:
"Hello world! This is a sample message. **** should not appear."
1 ≤ |message| ≤ 1000
0 ≤ |prohibited_words| ≤ 100
- Sentences in the message end with punctuation marks (e.g., .
, !
, ?
).
- The program should preserve punctuation but adjust spacing and capitalisation accordingly.
- Prohibited words should be replaced completely, regardless of case (e.g., "badword" matches "BadWord").