Skip to content

Instantly share code, notes, and snippets.

View MaqSaid's full-sized avatar
🎯
Focusing

Maq Said MaqSaid

🎯
Focusing
  • Melbourne,Australia
  • 14:50 (UTC +10:00)
  • LinkedIn in/maqsaid
View GitHub Profile
@MaqSaid
MaqSaid / average_race_time.py
Created April 6, 2026 09:21
Solution for average race time calculation from LinkedIn Learning Python challenge
# Source of data: https://www.arrs.run/
# This dataset has race times for women 10k runners from the Association of Road Racing Statisticians
import re
import datetime
def get_data():
"""Return content from the 10k_racetimes.txt file"""
with open('10k_racetimes.txt', 'rt') as file:
content = file.read()