Lets solve Project euler 5
- Refer Here for problem statement
- Refer Here for solution
- Debug this program by entering 4 as largest number
Dictionary
- Dictionary is collection of key value pairs
- Refer Here for examples
- Refer Here for samples done in the class
Functions
- Function is a reusable code block
- We have already used print, type
- syntax
def <function-name>(<args>):
<block>
- Example
def add(a,b):
return a + b
- Refer Here for samples
- Refer Here for samples
Project euler problem 3
- Refer Here
- Refer Here for solution
