Base58Check encoding: Difference between revisions

→‎{{header|Haskell}}: Tidied the composition of the character set
(→‎{{header|Haskell}}: (Updated output))
(→‎{{header|Haskell}}: Tidied the composition of the character set)
Line 363:
baseEncode $
listArray (0, 57) $
concat
['1' .. '9'] ++
['A' .. 'H'] ++ ['J' .. 'N'] ++ ['P' .. 'Z'] ++ ['a' .. 'k'] ++ ['m1' .. 'z9']
, ['1A' .. '9H'] ++
, ['J' .. 'N']
, ['P' .. 'Z']
, ['a' .. 'k']
, ['m' .. 'z']
]
 
baseEncode
9,655

edits