From fd1f2b36e95c03625297b7b8cba3b1a04a0cc0ed Mon Sep 17 00:00:00 2001 From: mzuenni Date: Tue, 10 Jan 2023 11:40:09 +0100 Subject: change whitespaces --- graph/havelHakimi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'graph/havelHakimi.cpp') diff --git a/graph/havelHakimi.cpp b/graph/havelHakimi.cpp index 9fb9846..135c4b0 100644 --- a/graph/havelHakimi.cpp +++ b/graph/havelHakimi.cpp @@ -4,7 +4,7 @@ vector> havelHakimi(const vector& deg) { vector> adj; while (!pq.empty()) { auto v = pq.top(); pq.pop(); - if (sz(pq) < v.first) return {}; //ERROR + if (sz(pq) < v.first) return {}; //impossible vector> todo; for (int i = 0; i < v.first; i++) { auto u = pq.top(); pq.pop(); -- cgit v1.2.3