From 84f194d4954f17aac88c250ec1ee088ee1481757 Mon Sep 17 00:00:00 2001
From: "Brady J. Garvin" <bgarvin@cse.unl.edu>
Date: Sun, 11 Sep 2022 20:56:17 -0500
Subject: [PATCH] Fixed line wrapping mistakes.

---
 exhaustive-search.md | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/exhaustive-search.md b/exhaustive-search.md
index 51e9d5c..983318e 100644
--- a/exhaustive-search.md
+++ b/exhaustive-search.md
@@ -67,8 +67,9 @@ function color(graph) {
 
 ### Subproblem
 
-Subproblem: Given an undirected graph and a coloring of its vertices, determine
-whether the coloring is proper (no adjacent vertices share a color).
+Subproblem: Given an undirected graph and a coloring of its vertices,
+determine whether the coloring is proper (no adjacent vertices share a
+color).
 
 #### Contract
 
@@ -125,9 +126,9 @@ function knapsack(items, getWeight, weightLimit, getValue) {
 
 ### Subproblem
 
-Subproblem: Given a universe of items, a function to compute the weights of sets
-of items, and a weight limit, find the set of all sets of items not exceeding
-the weight limit.
+Subproblem: Given a universe of items, a function to compute the
+weights of sets of items, and a weight limit, find the set of all sets
+of items not exceeding the weight limit.
 
 #### Contract
 
-- 
GitLab