8 followers
eduAlgo is a small startup, focused on building learner centric, research based education curriculum
Subscribe to my newsletter and never miss my upcoming articles
When you're working on a large opensource project, it is quite obvious for developers to create branches, add files and stage them for commits when they are ready etc. However, in some cases, you might realize that the changes that you made are not t...
Let's explore the most basic feature of VCS, i.e. the branches
The fractional knapsack problem is a greedy-based problem and also an extension of the classic 0-1 knapsack problem. You can read about the 0-1 knapsack problem here. Problem Description Given n items having certain value and weight, put these items...
What is Data Science? Data science is an interdisciplinary field that uses scientific methods, processes, algorithms and systems to discover hidden patterns from the raw data. Why Data Science? ->Traditionally, the data that we had was mostly structu...
Using git/github for your personal projects is pretty easy but when you're a part of an organisation or a large scale project with thousands of users you might get a tough time. One wrong move can cause mess or make the commit tree dirty or anything...
The unbounded knapsack problem is a dynamic programming-based problem and also an extension of the classic 0-1 knapsack problem. You can read about 0-1 knapsack problem here. ##Problem Description Given n weights having a certain value put these wei...