Interval Search Tree

**Problem ** Discuss Interval Search Tree Idea behind Interval Search Tree Lets discuss the 1D Interval search. By 1D I mean in 1 dimension i.e. having interval along 1 axis only. So, suppose along x axis we have collection of intervals - [1,2], [1,3] and so on. Here Interval Tree or Interval Search tree is helpful as it holds set of (overlapping) intervals Insert the interval Search delete Main functionality - Interval intersection query - given the interval (lo, hi) find all intervals in data structure which intersect with given interval. [Read More]

GitHub: Setup SSH - Permission denied public key error

I already setup SSH for GitHub which tutorial provided from GitHub, but there still somtething error with my Public Key Permission Denied, so that means I have missed the config. Solution that worked in my case was that I renamed the pub and private key to id_rsa. That solved the cause. Also those who already have files by this name, should try  chmod 600 ~/.ssh/id_rsa* from Git bash, assuming you installed Git for Windows. [Read More]