I am trying to compare a CSV file of 2 columns with 1st column having 1500 values and 2nd column having 900.
Example:
ValueA ValueB
ValueB ValueC
ValueD ValueA
Valuec ValueD
ValueF
ValueG
ValueH
ValueZ
The output logic is Take a value from 1st column and compare it with all values in 2nd column:
- If there is a match, do nothing
- If there is no match, output that Value to a file named results.csv
I am very new to programming and I have been looking at sites for this specific logic but failed to find.
Really appreciate any help on this. Thanks in advance.