You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> [length(b) for b in partitions(1)]
1-element Array{Int64,1}:
1
julia> [length(b) for b in partitions(0)]
1-element Array{Int64,1}:
4492284592
# I expect this
julia> [length(b) for b in [[]]]
1-element Array{Int64,1}:
0