Understanding Python

This repo was created to host the code of python challenges.

The challenges are separated by classes.

Class 1

  • Factorial
  • Fibonacci
  • Groupe Upper and Lower case from string
input = 'asfdSFBGgvsDCSDvsv'
output = 'asfdgvsvsvFBGDCSD'
  • Remove duplicated values from list
input = [10,20,30,10,20,10,10]
output = [10,20,30]