Coders Packet

Packets submitted by Tanay R Dandekar

Implementation of N-queen Problem in Python

In this article, we are going to solve the N queen problem using the backtracking approach in python.

String alignment in Python using ljust(), rjust() and center()

In this article, we are going to explore ljust, rjust and center methods in Python to align a given string just like we do in Microsoft word to left, right, or center align a given selected text.

Fractional Knapsack Problem using Greedy Approach in Python

In this article, we are going to learn about the fractional knapsack problem and its implementation in python using the greedy approach.