在此挑战中,给定吃豆人的鬼魂列表,您必须输出缺少的鬼魂。您必须尽可能地减少字节数
输入项
输入将由字符串或列表组成,其中将包含数字重影,可能包括;
- 眨眼
- 墨黑
- 小指
- 克莱德
但是,输入也可能包括吃豆人(带有标点符号)。因此,列表中的最大项目数将为五个,以任何顺序排列。可以假设列表中没有无效项
输出量
输出将包含一个字符串或列表。这将以任何顺序包括所有不在输入中的幻影。但是,如果输入中包含吃豆人,则所有鬼影都将被视为丢失(因为他吃掉了它们)。
测试用例
input: Clyde
output: Blinky, Inky, Pinky
alternate output: Inky, Pinky, Blinky
or one of the other 4 permutations
input: Clyde, Blinky # or however you delimit it
output: Inky, Pinky
alt: Pinky, Inky
input: Pac-Man, Clyde
Output: Blinky, Inky, Pinky, Clyde
or you could output one of the other 23 permutations
input:[null]
Output: Blinky, Inky, Pinky, Clyde
or you could output one of the other 23 permutations
这是codegolf,因此字节数越低越好。
[null]
?