Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: 10 x 10 table of values

by AnomalousMonk (Archbishop)
on Nov 29, 2021 at 05:32 UTC ( [id://11139203]=note: print w/replies, xml ) Need Help??


in reply to table of values

Maybe something along the lines of:

c:\@Work\Perl>perl -wMstrict -e "my @strings = qw(DOG COT BAL MAN); ;; use constant FMT => '%6s'; ;; printf FMT, $_ for '', @strings; print qq{\n}; ;; for my $row (@strings) { printf FMT, $row; for my $col (@strings) { my $d = diff($row, $col); printf FMT, $d; } print qq{\n}; } ;; sub diff { return scalar ($_[0] ^ $_[1]) =~ tr/\0//c; } " DOG COT BAL MAN DOG 0 2 3 3 COT 2 0 3 3 BAL 3 3 0 2 MAN 3 3 2 0

Update: In the
    sub diff { return scalar ($_[0] ^ $_[1]) =~ tr/\0//c; }
function definition, the scalar call is not needed, but does no harm. (Assignment to a scalar imposes scalar context.)


Give a man a fish:  <%-{-{-{-<

Replies are listed 'Best First'.
Re^2: 10 x 10 table of values
by dnamonk (Acolyte) on Nov 29, 2021 at 05:47 UTC
    Thanks. that looks great. However, how do I control if I want to allow 0 and only >=3 mismatches for randomly generated strings in the 10 x 10 table? That's actually where I am struggling.

      I assume davido's solution++ has satisfied your needs.


      Give a man a fish:  <%-{-{-{-<

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11139203]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (8)
As of 2024-04-23 17:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found