Skip to content

Commit 637907f

Browse files
committed
Blog, 2023 Day 25: Change wording
1 parent 9204ce3 commit 637907f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blog/src/content/solutions/2023/25/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ to make a copy our graph (since we will be modifying it). Then we can use the
8686
builtin [`random` module](https://docs.python.org/3/library/random.html) to let
8787
us randomly choose an edge[^random-edge-bias] so we can contract it. Once we
8888
have only two nodes left in our graph, we can return the number of edges
89-
connected to one of the remaining nodes (i.e. the number of edges in the cut we
90-
found).
89+
connected to one of the remaining nodes -- that will be the number of edges in
90+
the cut we found.
9191

9292
[^random-edge-bias]: What we're doing is choosing a random node, then choosing
9393
a random edge connected to that node. This actually biases our selection,

0 commit comments

Comments
 (0)