Skip to content

Java Word Finder: Utilize Maven to create a project that solves the problem of finding all English words within a given string. This task involves creating a Dictionary class and mocking its method, isEnglishWord(String word), for both the solution and tests. The output should be a collection of unique English words.

Notifications You must be signed in to change notification settings

Juanarcidiacono/PermutationChallenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

REI SDET Homework Problem

The Problem Using Java, find all of the English words in a given String. For example, if you are given the word WORKING, you can easily find WORK and KING, but ROW, RING and KNOW are also in there. You have access to a utility class called Dictionary, which has one method, isEnglishWord(String word). Dictionary.isEnglishWord(String word) connects to a (mocked) online dictionary and returns Boolean true if the String passed to it is an English word, return false otherwise. Instructions

Use Maven to create a project to answer this problem. You will need to create the Dictionary class. You will need to mock Dictionary.isEnglishWord(String word) for your solution and tests. The output of your primary method should be a collection of Strings without duplicates. Create tests that exercise your class and methods. Please complete the instructions to the best of your ability and understanding and come prepared to discuss the design decisions you chose.

About

Java Word Finder: Utilize Maven to create a project that solves the problem of finding all English words within a given string. This task involves creating a Dictionary class and mocking its method, isEnglishWord(String word), for both the solution and tests. The output should be a collection of unique English words.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages