Ad
  • Custom User Avatar

    runs in O(log n) or O(len(s))

  • Custom User Avatar

    oh thank you, I must have deleted the original comment a bit too quickly ... my bad

  • Custom User Avatar

    The OCaml version seem way harder than other languages... why does the OCaml have to deal with big numbers as string and not other language lol

  • Custom User Avatar

    Hi, Im loving the kata (really nice detailed test set) but there is one thing not specified (or i misunderstood :D),
    when i remove a branch do i have to recycle the branch id just like for atoms ?
    Meaning

    b.brancher(1, 1)

    b.mutate(1, 1, 'H')

    b.closer().unlock()

    then accessing the first branch via

    b.add(1, 1, "F")

    should it just crash or is there the same ordering as ids
    for atom being maintained ?

    For now i assumed yes but all unit test works but not random ones...