https://github.com/rurickdev/understanding-python
https://github.com/rurickdev/understanding-python
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rurickdev/understanding-python
- Owner: rurickdev
- Created: 2020-10-03T02:26:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-13T03:23:27.000Z (over 5 years ago)
- Last Synced: 2025-01-23T22:20:03.210Z (over 1 year ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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]
```