Re: which datastructure for fast sorted insert?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Terry Reedy

    Re: which datastructure for fast sorted insert?


    "Rares Vernica" <rares@ics.uci. eduwrote in message
    news:y1r1w3qan3 p.fsf@ics.uci.e du...
    | >>l=list(s)
    | >>l.sort()

    This can be condensed to l = sorted(s)

    | >>l
    | ['a', 'b', 'c']



Working...