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...