()
| 46 | |
| 47 | |
| 48 | def get_answers_count() -> List[int]: |
| 49 | file_content = get_file_content() |
| 50 | answered = get_answered_questions(file_content) |
| 51 | all_questions = get_question_list(file_content) |
| 52 | return [len(answered), len(all_questions)] |
| 53 | |
| 54 | |
| 55 | def get_challenges_count() -> int: |
nothing calls this directly
no test coverage detected