Skip to content

Commit

Permalink
Merge pull request julycoding#275 from alvas/patch-1
Browse files Browse the repository at this point in the history
Update 06.11.md
  • Loading branch information
julycoding committed Apr 29, 2014
2 parents 0ccce04 + 90b9926 commit 2b6e3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ebook/zh/06.11.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class Solution
public:
vector<vector<string>> findLadders(string start, string end, set<string>& dict)
{
vector<vector<string>> result, result_temp;
vector<vector<string>> result;
if (dict.erase(start) == 1 && dict.erase(end) == 1)
{
map<string, vector<string>> kids_from_start;
Expand Down

0 comments on commit 2b6e3e9

Please sign in to comment.