Coders Packet

Packets submitted by MOKSHITHA CHANDAMPETA

Python program to find sum of cubes of first n natural numbers.

This Python tutorial gives an easy way to find the sum of cubes of first n natural numbers i.e., 1*1*1+2*2*2+3*3*3+.....n*n*n.

Python program to find sum of the squares of first n natural numbers.

This Python tutorial gives an easy way to find the sum of squares of first n natural numbers i.e., 1*1+2*2+3*3+......n*n.

Python solution for sum of subsets using backtracking

This tutorial helps you learn the backtracking approach for solving sum of subsets problem.