Skip to content

Latest commit

 

History

History

likesVsDislikes

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Likes Vs Dislikes

7 kyu link to kata
my solution

Story

YouTube had a like and a dislike button, which allowed users to express their opinions about particular content. It was set up in such a way that you cannot like and dislike a video at the same time. There are two other interesting rules to be noted about the interface: Pressing a button, which is already active, will undo your press. If you press the like button after pressing the dislike button, the like button overwrites the previous "Dislike" state. The same is true for the other way round.

Task

Create a function that takes in a list of button inputs and returns the final state.

Examples

likeOrDislike([Dislike]) => Dislike
likeOrDislike([Like,Like]) => Nothing
likeOrDislike([Dislike,Like]) => Like
likeOrDislike([Like,Dislike,Dislike]) => Nothing

Notes

  • If no button is currently active, return Nothing.
  • If the list is empty, return Nothing.