Skip to main content
added 3 characters in body
Source Link
avarice
  • 12.5k
  • 1
  • 21
  • 52

Bash, 2525 23 bytes

seq 0 $(printf '%d'%d "'d")

Try it online!Try it online!

Port of my Powershell answer.-2 thanks to @manatwork

Bash, 25 bytes

seq 0 $(printf '%d' "'d")

Try it online!

Port of my Powershell answer.

Bash, 25 23 bytes

seq 0 $(printf %d "'d")

Try it online!

-2 thanks to @manatwork

Source Link
avarice
  • 12.5k
  • 1
  • 21
  • 52

Bash, 25 bytes

seq 0 $(printf '%d' "'d")

Try it online!

Port of my Powershell answer.