opendilab/LLMRiddles

第四章第一题的bug

Ruanxingzhi opened this issue · 1 comments

image

修复方案(猜测):questions/level4.py 第 85 行

    if not check_if_is_number(question_text):

改为

    if not check_if_is_number(question_text.strip()):

这个问题已在 #8 中被修复。