Problem Statement Given n points on a 2D plane, find the maximum number of points that lie on the same straight line. Original LeetCode problem page My Solution in Swift The basic idea is to calculate gradient of every pair of points, and group points with same gradient. The final answer is then the size Continue reading...
Prove Logs on Blockchain with Go and ProvenDB
It’s been a long time since my last blog post. Here is my recent one on Medium: ProvenLogs is a simple yet performant logging service built…