Skip to content

msravan/dressup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dressup

Problem: You are currently in your house wearing your PJ’s. You must get fully dressed and leave the house. Your challenge is to programmatically process a list of getting dressed commands, enforce related rules, and display appropriate output. Inputs:

  1. Temperature type (one of the following) • HOT • COLD
  2. Comma separated list of numeric commands Command Description Hot Response Cold Response
  3. Put on footwear “sandals” “boots”
  4. Put on headwear “sunglasses” “hat”
  5. Put on socks fail “socks”
  6. Put on shirt “shirt” “shirt”
  7. Put on jacket fail “jacket”
  8. Put on pants “shorts” “pants”
  9. Leave house “leaving house” “leaving house”
  10. Take off pajamas “Removing PJs” “Removing PJs”

Rules:

• You start in the house with your PJ’s on • Pajamas must be taken off before anything else can be put on • Only 1 piece of each type of clothing may be put on • You cannot put on socks when it is hot • You cannot put on a jacket when it is hot • Socks must be put on before footwear • Pants must be put on before footwear • The shirt must be put on before the headwear or jacket • You cannot leave the house until all items of clothing are on (except socks and a jacket when it’s hot) • If an invalid command is issued, respond with “fail” and stop processing commands

Examples

Success:

Input: HOT 8, 6, 4, 2, 1, 7 Output: Removing PJs, shorts, shirt, sunglasses, sandals, leaving house Input: COLD 8, 6, 3, 4, 2, 5, 1, 7 Output: Removing PJs, pants, socks, shirt, hat, jacket, boots, leaving house

Failure:

Input: HOT 8, 6, 6 Output: Removing PJs, shorts, fail Input: HOT 8, 6, 3 Output: Removing PJs, shorts, fail Input: COLD 8, 6, 3, 4, 2, 5, 7 Output: Removing PJs, pants, socks, shirt, hat, jacket, fail Input: COLD 6 Output: fail

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages