Skip to content

JosephA91/string_validation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Problem

Validate string against dictionary

  1. Given a string and a list of words, determine if the string is valid based on the list of words

  2. Determine if the given string contains valid words while ignoring extraneous characters

Example 1

'this is a test'
['this', 'is', 'a', 'test']
Returns true

Example 2

'this is a test'
['this', 'a', 'test']
Returns false

About

Validate string against dictionary

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages