Question 1
What will be the output of the command
sort -n file1.txt file2.txt | awk '!seen[$1]++ {print $1, $2, $3}'given the following content of file1.txt and file2.txt?
| file1.txt | file2.txt |
|---|---|
| 101 John Doe | 102 Michael Johnson |
| 103 Jane Smith | 103 Jane Smith |
| 105 Emma Brown | 106 Lily Evans |
| 107 William Harris | 107 William Harris |
| 109 Oliver Lewis | 110 Sophia Turner |
