The Clique Problem (CLIQUE) takes an input of:

  • an undirected graph
  • an integer

It provides an output of if and only if contains a clique of size .

Clique

A clique is a subset of an undirected graph such that every two distinct vertices in the clique are adjacent.

Link to original