Skip to content

Instantly share code, notes, and snippets.

View IssamLL's full-sized avatar
🎯
Focusing

Issam ECH-CHAOUI IssamLL

🎯
Focusing
View GitHub Profile
@IssamLL
IssamLL / The elapsed time during the whole program in seconds
Last active May 8, 2022 13:02 — forked from jenthone/__python_tricks__
Python - Competitive Programming Tricks
from time import perf_counter
# Start the stopwatch / counter
t1_start = perf_counter()
# Your code
# Stop the stopwatch / counter
t1_stop = perf_counter()