Skip to main content
We’ve updated our Terms of Service. A new AI Addendum clarifies how Stack Overflow utilizes AI interactions.
Code Golf

Return to Answer

added 85 characters in body
Source Link
Dada
  • 8.5k
  • 1
  • 18
  • 44

Perl 5, 87 bytes

7-1 byte thanks to @Xcali

6 bytes of code + -p flag.

sy/./ /gc

Try it online! Try it online!

Quite straight forward : replaces every character with a space.

Perl 5, 8 bytes

7 bytes of code + -p flag.

s/./ /g

Try it online!

Quite straight forward : replaces every character with a space.

Perl 5, 7 bytes

-1 byte thanks to @Xcali

6 bytes of code + -p flag.

y// /c

Try it online!

Quite straight forward : replaces every character with a space.

Source Link
Dada
  • 8.5k
  • 1
  • 18
  • 44

Perl 5, 8 bytes

7 bytes of code + -p flag.

s/./ /g

Try it online!

Quite straight forward : replaces every character with a space.

AltStyle によって変換されたページ (->オリジナル) /