Skip to content

Commit 6544f91

Browse files
authored
Update Breadth-First-Search.md
1 parent 7ed993c commit 6544f91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

md/Breadth-First-Search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## AIMA3e
44
__function__ BREADTH-FIRST-SEARCH(_problem_) __returns__ a solution, or failure
5-
 _node_ ← a node with STATE = _problem_.INITIAL\-STATE, PATH\-COST = 0
5+
 _node_ ← a node with STATE = _problem_.INITIAL\-STATE
66
 __if__ _problem_.GOAL\-TEST(_node_.STATE) __then return__ SOLUTION(_node_)
77
 _frontier_ ← a FIFO queue with _node_ as the only element
88
 _explored_ ← an empty set

0 commit comments

Comments
 (0)