五 212007
tapply(unlist(t0),unlist(t0),function(x){names(x)})
Here is a minor shortening of that solution:
tapply(t0, unlist(t0), names)
tapply(unlist(t0),unlist(t0),function(x){names(x)})
Here is a minor shortening of that solution:
tapply(t0, unlist(t0), names)