Viewing profile — WillowAndrew
WillowAndrew
HN member- Joined
- Thu, Jun 18, 2020, 7:27 PM UTC
- HN karma
- 4
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About WillowAndrew
No profile information was provided.
Recent public activity
-
comment
Comment #46319844
If you want things to stay as they are, just pin your versions.
- story
-
story
Is it a bad practice to write (hopefully) unreachable code?
Let's say you want to union two intervals. The code could look like this: ``` def union(self, other): # Capture special cases if self.is_empty(): return other elif other.is_empty()…