An open API service indexing awesome lists of open source software.

https://github.com/rurickdev/understanding-python


https://github.com/rurickdev/understanding-python

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# 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

```python
input = 'asfdSFBGgvsDCSDvsv'
output = 'asfdgvsvsvFBGDCSD'
```

- Remove duplicated values from list

```python
input = [10,20,30,10,20,10,10]
output = [10,20,30]
```