so i need to format a table into an array with targets candidates and the score. the targets and candidates holding six preset digits and the score being the difference such as, if the target pattern is 242234 and the candidate pattern is 342121, the candidate pattern ;would be given a score of 6: score = abs(2 − 3) + abs(4 − 4) + abs(2 − 2) + abs(2 − 1) + abs(3 − 2) + abs(4 − 1) = 6. Note that the score is the sum of the absolute values of the differences between each pair of digits in the pattern, and is not just the difference between the numbers. and im not sure how to get the numbers into the right spot of the table