Thank you very much! Sorry for my deep ignorance, but what I need to write in the my @input = ({},{}) inside the graph ?
Where is addressed the input file, for istance 'mytext.txt' that contains the two columns?
Comment on Re^4: NON Common Elements between two columns
my @input = ({},{}) just creates an array containing two empty hash references which are going to be filled later.
The input data can be passed directory to STDIN of the script or stated as a command line argument (<> is a special case, input from <> comes either from standard input, or from each file listed on the command line. See I/O Operators).