Skip to content

Latest commit

 

History

History

08-challenge

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Challenge 08

Yet again, Santa has made a request to change the children filtering code. This time he just sent an email to the entire engineering team (which is absolutely not the process, but since Santa is sometimes a bit difficult to communicate with, no one has yet had the courage to tell him). Here's the contents of the email.

POST /sendmail HTTP/1.1
Host: mail.hohoholdings.com
Content-Type: text/plain; charset=utf-8
Content-Length: 420

From: kris.kringle@hohoholdings.com
To: engineering@hohoholdings.com
Subject: Code Changes Needed

Hello beloved team!

Looks like we need some changes to the code again!

1. There are sometimes naughty kids in the same list
1. Turns out I don't actually need to see the nice children in the list, after all
1. My golf game ran late this morning... so since the other two changes were quick to implement, I'm sure this will be just as fast, right?!

- Kris Kringle
  "at Santa's workshop, we value loyalty over all else"

Wow. What a pointless email. For once, calling a meeting would have been better.

Good thing we got some experience reading the tests because this email may as well have said "do work. thanks." (lol).

Off to the tests to see how this is actually supposed to work!

Expected Behavior

type SantasList = {
	naughty_tom: { address: '1 candy cane lane' }
	good_timmy: { address: '43 chocolate dr' }
	naughty_trash: { address: '637 starlight way' }
	naughty_candace: { address: '12 aurora' }
}

type WellBehavedRemovedNaughty = RemoveNaughtyChildren<SantasList>
/*
    {
        good_timmy: { address: '43 chocolate dr' }
    }
*/

type Unrelated = {
	dont: 'cheat'
	naughty_play: 'fair'
}

type UnrelatedRemovedNaughty = RemoveNaughtyChildren<Unrelated>
/*
    {
        dont: 'cheat'
    }
*/

Prompt by Dimitri Mitropoulos of MiTS.