瀏覽代碼

Make success messages shorter

More visible
DricomDragon 5 年之前
父節點
當前提交
5b4227f8cb
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      main.cc

+ 2 - 2
main.cc

@@ -235,9 +235,9 @@ int main()
 
 	// Display DFS result
 	if (exitFound)
-		cout << "DFS succeeded to reach the target" << endl;
+		cout << "SUCCESS !" << endl;
 	else
-		cout << "FAILURE : DFS failed to reach target" << endl;
+		cout << "FAILURE ..." << endl;
 
 	return 0;
 }