Skip to content
Advertisement

validation of words in a sentence

I am trying to set validation for given sentence (input). These are criteria

  1. Word contains letters, hyphens and punctuation only (no digits)
  2. Maximum number of hyphen is one per word. If present, hyphens must be placed between letters (“ab-ab” not “-ab” or “ab-“
  3. Maximum number of punctuation mark is one as well. If present, punctuation mark must be placed at the end of the word (“ab!”, “ab,” not “a!b” “a!!b”)

sentence = “these are valid words” is expected as [True, True, True, True]

sentence = “!this 1-s b8d!” is expected as [False, False, False]

sentence = “mciheal mnefiodonvass? W-O-W” is expected as [True, True, False]

sentence = “it’s Minecraft, not Mine-Craft!!” is expected as [False, True, True, False]) however i got [‘False’, ‘False’, ‘False’, ‘False’]

I got first three correct however for last one i am not getting the correct answer. Also for first criterion which is word with letters only will return True, it works for first but does not in last example. Can you explain me why and how can I fix it?

for last example I got [‘False’, ‘False’, ‘False’, ‘False’]

JavaScript

def valid_words_mask(sentence):

JavaScript

Advertisement

Answer

Based on your constraints, I suggest you break your code into a function with only 1 purpose: to check a single word. You can use something like:

JavaScript

To apply to each word in your sentence (split by whitespace I guess), so:

JavaScript

prints

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement