import chaos

The edge cases of software engineering.

Hash Map Deep Dive

β€’
tutorials
algorithms

(Originally published on Dev.to)

A dict in Python. map in Go, Object or Map in Javascript. Associative arrays in PHP, Dictionary<TKey, TValue> in C++. Hash maps are implemented in virtually every high-level programming language. And they are awesome!...

Practical Skyline Queries In Go

β€’
tutorials
algorithms
Golang
skyline (go library)

(Originally published on Dev.to)

We have a set of points in a multi-dimensional space, and we want to find the points that are not dominated by any other point. (Point A dominates another point B if A is better than B in all dimensions...

Skyline Queries for Non-Academics

β€’
tutorials
algorithms

(Originally published on Dev.to)

Imagine you're buying a laptop. You care about two things: price and battery life. You don’t know which laptop is the best, but you can easily spot laptops that are obviously worse than others...