Skip to main content
added 80 characters in body
Source Link
Scott
  • 1.2k
  • 7
  • 12

Pyth, 77 6 bytes

.-srd\ .-srd\  

.- .- Subtract the second string from the first:

  1. srd\ Create a range from space char to the delete char
  2. implicitly read input

Try it online!

Pyth, 7 bytes

.-srd\  

.- Subtract the second string from the first:

  1. srd\ Create a range from space char to the delete char
  2. implicitly read input

Try it online!

Pyth, 7 6 bytes

.-srd\ -srd\

.- - Subtract the second string from the first:

  1. srd\ Create a range from space char to the delete char
  2. implicitly read input

Try it online!

Source Link
Scott
  • 1.2k
  • 7
  • 12

Pyth, 7 bytes

.-srd\ 

.- Subtract the second string from the first:

  1. srd\ Create a range from space char to the delete char
  2. implicitly read input

Try it online!