Skip to content
Snippets Groups Projects
Commit 84f194d4 authored by Brady James Garvin's avatar Brady James Garvin
Browse files

Fixed line wrapping mistakes.

parent c69b1068
No related branches found
No related tags found
No related merge requests found
...@@ -67,8 +67,9 @@ function color(graph) { ...@@ -67,8 +67,9 @@ function color(graph) {
### Subproblem ### Subproblem
Subproblem: Given an undirected graph and a coloring of its vertices, determine Subproblem: Given an undirected graph and a coloring of its vertices,
whether the coloring is proper (no adjacent vertices share a color). determine whether the coloring is proper (no adjacent vertices share a
color).
#### Contract #### Contract
...@@ -125,9 +126,9 @@ function knapsack(items, getWeight, weightLimit, getValue) { ...@@ -125,9 +126,9 @@ function knapsack(items, getWeight, weightLimit, getValue) {
### Subproblem ### Subproblem
Subproblem: Given a universe of items, a function to compute the weights of sets Subproblem: Given a universe of items, a function to compute the
of items, and a weight limit, find the set of all sets of items not exceeding weights of sets of items, and a weight limit, find the set of all sets
the weight limit. of items not exceeding the weight limit.
#### Contract #### Contract
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment