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

Switched selected graph search to the recursive DFS.

parent a22183a0
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ function formatSolution(solution) {
}
export function Solution(props) {
const search = bestFirst;
const search = recursiveDFS;
const firstSolution = search(firstExample, 'a', 'd');
const secondSolution = search(secondExample, '123', '321');
return (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment