Dada una oración que contiene algunas apariciones de "Ctrl + C" y "Ctrl + V", ¡devuelve la oración después de aplicar esos atajos de teclado! Ten en cuenta que:
"Ctrl + C" copiará todo el texto que se encuentre antes."Ctrl + V" no hará nada si no hay ningún "Ctrl + C" antes."Ctrl + C" que aparece después de otro "Ctrl + C" sobrescribirá lo que copia.keyboardShortcut("the egg and Ctrl + C Ctrl + V the spoon") ➞ "the egg and the egg and the spoon"
keyboardShortcut("WARNING Ctrl + V Ctrl + C Ctrl + V") ➞ "WARNING WARNING"
keyboardShortcut("The Ctrl + C Ctrl + V Town Ctrl + C Ctrl + V") ➞ "The The Town The The Town"