Thread OOP Array in einem Hash of Array sortieren
(12 answers)
Opened by der_thomas at 2014-03-14 21:25
Mal inplace versucht?
Code (perl): (dl
)
@{ $self->{daten} } = sort { ... } @{ $self->{daten} }; Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? -- Brian Kernighan: "The Elements of Programming Style"
|