Matrix component input: random graph

What is the adjacency matrix ${\bf A}$ corresponding to the graph below?

0 0 1 1 1->1 2 2 1->2 2->1 2->2 3 3 2->3 3->1 3->2 3->3

Hint: zero entries can be left blank.

Correct answer
Student view placeholder
In student views this area is used for assessment and score info.
Staff information
Staff user:
Dev User
dev@example.com

Question:
Title:
Matrix component input: random graph
Started at:
2024-09-19 17:59:33 (CDT)
Duration:
0 s
Show/Hide answer
{
  "matrix": {
    "_type": "ndarray",
    "_dtype": "int64",
    "_value": [
      [
        0,
        0,
        0,
        0
      ],
      [
        0,
        1,
        1,
        1
      ],
      [
        0,
        1,
        1,
        1
      ],
      [
        0,
        0,
        1,
        1
      ]
    ]
  }
}