Thread Arrays: Pärchen zählen (12 answers)
Opened by hugenyn at 2012-01-28 01:17

FIFO
 2012-01-28 09:58
#155737 #155737
User since
2005-06-01
469 Artikel
BenutzerIn

user image
Das funktioniert aber nur mit einer eindeutigen @frau-Liste, und nur, wenn beide arrays die gleiche Größe haben. Außerdem werden so nur die Paare erkannt, die die gleiche Position in beiden Arrays haben.
Probier mal mit
Code: (dl )
1
2
my @frau = qw /bl bl bl ge gr br sw rt/;
my @mann = qw /ge bl bl br sw rt/;

oder
Code: (dl )
1
2
my @frau = qw /bl ge gr br sw rt/;
my @mann = reverse @frau;
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"

View full thread Arrays: Pärchen zählen