this post was submitted on 26 Apr 2025
17 points (100.0% liked)

Python

7054 readers
11 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

📅 Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

🐍 Python project:
💓 Python Community:
✨ Python Ecosystem:
🌌 Fediverse
Communities
Projects
Feeds

founded 2 years ago
MODERATORS
17
O(no) You Didn’t (mrshiny608.github.io)
submitted 4 days ago by tyler to c/python
top 3 comments
sorted by: hot top controversial new old
[–] FizzyOrange 7 points 4 days ago (1 children)

TL;DR, big-O ignores the constant factor. If you already know what that means you don't need to read this...

[–] [email protected] 4 points 3 days ago

Eh, I also enjoyed seeing the comparison between Go and Python, seeing the jumps in time because of allocations, and knowing the size of the list when the more efficient algorithm started to become faster.

[–] [email protected] 1 points 4 days ago

It'd be interesting to see if switching to pypy made any difference. It won't beat the eventual exponential growth, but I've seen it be as fast as Rust code I've written for code like this.