Skip to content

Instantly share code, notes, and snippets.

@cystec
cystec / divisors.py
Created September 5, 2016 18:31
Code to find divisors of a Number
'''
Created on Sep 4, 2016
Create a program that asks the user for a number
and then prints out a list of all the
divisors of that number.
@author: CyberShubhaM
'''
def divisors():
@cystec
cystec / list.py
Created September 5, 2016 18:43
write a program that returns a list that contains only the elements that are common between the lists (without duplicates). Make sure your program works on two lists of different sizes.
'''
Created on Sep 4, 2016
Take two lists, say for example these two:
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
and write a program that returns a list that contains only the
elements that are common between the lists (without duplicates).