Skip to main content
deleted 6 characters in body
Source Link
chunes
  • 28k
  • 3
  • 33
  • 55

Arturo, 2523 bytes

$=>[@.of:from.binary&`*`]binary&1]

Try it!

Returns a list of charactersdigits.

$=>[             ; a function where input is assigned to &
    from.binary& ; convert input from binary string to decimal integer
    @.of: _ 1    ; create list of that many 1s
]                ; end function

Arturo, 25 bytes

$=>[@.of:from.binary&`*`]

Try it!

Returns a list of characters.

Arturo, 23 bytes

$=>[@.of:from.binary&1]

Try it!

Returns a list of digits.

$=>[             ; a function where input is assigned to &
    from.binary& ; convert input from binary string to decimal integer
    @.of: _ 1    ; create list of that many 1s
]                ; end function
Source Link
chunes
  • 28k
  • 3
  • 33
  • 55

Arturo, 25 bytes

$=>[@.of:from.binary&`*`]

Try it!

Returns a list of characters.