我想到了一种使用递归DFS解决子集问题(https://leetcode.com/problems/subsets/)的方法。但是我无法提出如何使用迭代DFS解决它。有人可以帮忙吗?
我的递归DFS解决方案:
from mitmproxy import http
def request(flow):
if flow.request.pretty_url.endswith("example.com/index.php"):
flow.response = http.HTTPResponse.make(
200,
"<html><body>hello world</body></html>",
{"content-type":"text/html"},
)