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

Post Undeleted by hyperneutrino
deleted 24 characters in body
Source Link
hyperneutrino
  • 42.8k
  • 5
  • 72
  • 227

Python 3 Proton, 3944 bytes

lambda s,n:"".join(k*n for k in s[::n])
s=>n=>"".join(s[i]*(i%n?1:n)for i:0..len(s))

Try it online! Try it online!

Python 3, 39 bytes

lambda s,n:"".join(k*n for k in s[::n])

Try it online!

Proton, 44 bytes

s=>n=>"".join(s[i]*(i%n?1:n)for i:0..len(s))

Try it online!

Post Deleted by hyperneutrino
Source Link
hyperneutrino
  • 42.8k
  • 5
  • 72
  • 227

Python 3, 39 bytes

lambda s,n:"".join(k*n for k in s[::n])

Try it online!

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