This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let split s n = | |
let arr = Array.make n 0 in | |
let rec loop j i = | |
if i < String.length s && j < n then | |
let c = s.[i] in | |
if c == ' ' then | |
loop (j + 1) (i + 1) | |
else | |
let () = arr.(j) <- | |
arr.(j) * 10 + (int_of_char c - int_of_char '0') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package core; | |
public class Base58 { | |
private static final char[] ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz" | |
.toCharArray(); | |
private static final int BASE_58 = ALPHABET.length; | |
private static final int BASE_256 = 256; | |
private static final int[] INDEXES = new int[128]; |
NewerOlder