I'm trying to create a 2D array from the data read from .txt file.
The data in 'data.txt' look like belows:
A;B;4
A;C;5
B;C;8
Assume it is symmetry.
Is there any way to create a 2D matrix [i][j] and print in d[i][j] = value?
Appreciate your comments/suggestion.