/PureCoding--PythonEdition

A Collection of Python Programs that captures the essence of Coding in Python.

Primary LanguagePython

PureCoding--PythonEdition

A Collection of Python Programs that captures the essence of Coding in Python

second_length finds all the words which are second largest in a sentence.

fibo_gen checks if a number belongs to the fibonacci sequence

list_reorder sorts a list of lists on the basis of their second element.

remove_cons_dup removes consequetive numbers from the list. for eg: l=[ 2 5 6 6 6 6 3 ] will be l=[2 5 6 3].

caeser encrypyts a message provided by the user as per caeser's cipher approach.

2_large accepts a list of integers and prints two of the largest numbers that can be formed.

Random_date prints a random date in dd-mm-yyyy format between two dates.

knapsack solves the fractional knapsack problem.

Finds all subsets of a set.

Equivalent Prime is a problem based on CodeVita where we basically find equivalent primes in different sets of values.

Vertical Words prints the words in a string vertically.