Skip to main content
added 94 characters in body
Source Link
hakr14
  • 5.5k
  • 1
  • 14
  • 20

Mathematica, 3232 29 bytes

(9-#&/@##).Prime/@Range@Length@#+1&Prime@Range@Length@#+1& 

View it on Wolfram Cloud!

-3 bytes thanks to Roman!

Accepts input as a list of decimal digits.

Mathematica, 32 bytes

9-#&/@#.Prime/@Range@Length@#+1& 

View it on Wolfram Cloud!

Accepts input as a list of decimal digits.

Mathematica, 32 29 bytes

(9-#).Prime@Range@Length@#+1& 

View it on Wolfram Cloud!

-3 bytes thanks to Roman!

Accepts input as a list of decimal digits.

Source Link
hakr14
  • 5.5k
  • 1
  • 14
  • 20

Mathematica, 32 bytes

9-#&/@#.Prime/@Range@Length@#+1& 

View it on Wolfram Cloud!

Accepts input as a list of decimal digits.