Skip to content

Commit

Permalink
Naturemade results
Browse files Browse the repository at this point in the history
  • Loading branch information
KR-Ravindra committed Oct 28, 2023
1 parent 6ba5d2a commit 7cae387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ async def keyword_api(request: Request):
async def multialgo_api(request: Request):
payload = await request.json()
url = payload['url'].strip('/') if payload['url'].endswith('/') else payload['url']
algo_choices = ["rabin_karp", "naive", "kmp", "suffix_array", "suffix_tree"]
algo_choices = [ "kmp", "suffix_array", "suffix_tree"]
final_response = {"data": []}
wait_iterator = 0
try:
Expand Down

0 comments on commit 7cae387

Please sign in to comment.