// Example: On input of the adjacency list:
// A={
// {1,2,3},
// {3},
// {0,2},
// {1}
// };
//
// this function will return a matrix:
// M={
// {0,1,1,1},
// {0,0,0,1},
// {1,0,1,0},
// {0,1,0,0}
// };
//
Ragazzi non riesco a fare questo esercizio, se potete darmi una mano ve ne sarei grato