# Clique of a given size problem

Last edited: 2023-11-11

# Statement

Clique of a given size problem

Given an undirected graph $G = (V,E)$ and a positive integer $g > 0$. Does there exist a clique of size at least $g$ if so what is it?

# Solutions

# Theory

# Related problems