https://github.com/lnvaldez/daily-mini-challenges
Daily coding problems provided by Penguin Academy for the CodePro 8-Month program.
https://github.com/lnvaldez/daily-mini-challenges
programming programming-challenges programming-exercises python python3
Last synced: 11 months ago
JSON representation
Daily coding problems provided by Penguin Academy for the CodePro 8-Month program.
- Host: GitHub
- URL: https://github.com/lnvaldez/daily-mini-challenges
- Owner: lnvaldez
- Created: 2024-06-11T14:12:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-29T21:34:45.000Z (over 1 year ago)
- Last Synced: 2025-01-16T09:44:11.307Z (over 1 year ago)
- Topics: programming, programming-challenges, programming-exercises, python, python3
- Language: Python
- Homepage:
- Size: 87.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
๐ง Daily Mini-Challenges
_
(_)
_ __ ___ _ __ __ _ _ _ _ _ __
| '_ \ / _ \ '_ \ / _` | | | | | '_ \
| |_) | __/ | | | (_| | |_| | | | | |
| .__/ \___|_| |_|\__, |\__,_|_|_| |_|
| | __/ |
|_| |___/
###
๐คฟ The Dive MC's
## `Week 1` \* June 11-14
| ๐
Date | ๐ Challenge | ๐๏ธ File | Concepts Covered | Status |
| -------- | -------------------------------- | ------------------------------------------------------------------------------------------------------------------ | ------------------- | ------ |
| โ๏ธ 06/11 | **Day 1** - Reverse String | [`d1_reverse_string.py`](https://github.com/lnvaldez/Daily-Mini-Challenges/blob/main/dive/w1/d1_reverse_string.py) | Strings, Functions | โ
|
| โ๏ธ 06/12 | **Day 2** - Multiplication Table | [`d2_multiply_table.py`](https://github.com/lnvaldez/Daily-Mini-Challenges/blob/main/dive/w1/d2_multiply_table.py) | Loops, Nested Loops | โ
|
| ๐
ฐ๏ธ 06/13 | **Day 3** - Count Vowels | [`d3_count_vowels.py`](https://github.com/lnvaldez/Daily-Mini-Challenges/blob/main/dive/w1/d3_count_vowels.py) | Strings, Functions | โ
|
| ๐ฆ 06/14 | **Day 4** - Sort List | [`d4_sort_list.py`](https://github.com/lnvaldez/Daily-Mini-Challenges/blob/main/dive/w1/d4_sort_list.py) | Lists, Sorting | โ
|
## `Week 2` \* June 17-21
| ๐
Date | ๐ Challenge | ๐๏ธ File | Concepts Covered | Status |
| -------- | ----------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ------ |
| ๐ 06/17 | **Day 5** - List to Dictionary | [`d5_list_to_dict.py`](https://github.com/lnvaldez/Daily-Mini-Challenges/blob/main/dive/w2/d5_list_to_dict.py) | Dictionaries, Lists | โ
|
| ๐ก๏ธ 06/18 | **Day 6** - Celsius to Fahrenheit | [`d6_celsius_to_fahrenheit.py`](https://github.com/lnvaldez/Daily-Mini-Challenges/blob/main/dive/w2/d6_celsius_to_fahrenheit.py) | Functions, Math | โ
|
| โ 06/19 | **Day 7** - Rock, Paper, Scissors | [`d7_rps.py`](https://github.com/lnvaldez/Daily-Mini-Challenges/blob/main/dive/w2/d7_rps.py) | Conditional Statements | โ
|
| ๐ 06/20 | **Day 8** - Safe Password Generator | [`d8_safe_password.py`](https://github.com/lnvaldez/Daily-Mini-Challenges/blob/main/dive/w2/d8_safe_password.py) | Strings, Random | โ
|
| โ 06/21 | **Day 9** - Sum | [`d9_sum.cpp`](https://github.com/lnvaldez/Daily-Mini-Challenges/blob/main/dive/w2/d9_sum.cpp) | Functions, Loops | โ
|
## `Week 3` \* June 24-25
| ๐
Date | ๐ Challenge | ๐๏ธ File | Concepts Covered | Status |
| -------- | ----------------------------- | -------------------------------------------------------------------------------------------------------------------------- | ------------------ | ------ |
| ๐ 06/24 | **Day 10** - Order Array | [`d10_order_array.cpp`](https://github.com/lnvaldez/Daily-Mini-Challenges/blob/main/dive/w3/d10_order_array.cpp) | Arrays, Sorting | โ
|
| โ
06/25 | **Day 11** - Check Palindrome | [`d11_check_palindrome.cpp`](https://github.com/lnvaldez/Daily-Mini-Challenges/blob/main/dive/w3/d11_check_palindrome.cpp) | Strings, Functions | โ
|
###
๐ต The Huddle MC's
| #๏ธโฃ | ๐ง | ๐ Challenge | ๐๏ธ File | โจ๏ธ Concepts Covered | Status |
| ----- | --- | ------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------- | --------------------------- | ------ |
| 1 | ๐ | **Binary Search** | [01_binary_search.py](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/01_binary_search.py) | Searching Algorithms | โ
|
| 2 | ๐ | **Simple Sort** | [02_simple_sort.cpp](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/02_simple_sort.cpp) | Sorting Algorithms | โ
|
| 3 | ๐ฒ | **DFS** | [03_dfs.py](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/03_dfs.py) | Graph Traversal | โ
|
| 4 | ๐ณ | **BFS** | [04_bfs.py](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/04_bfs.py) | Graph Traversal | โ
|
| 5 | ๐ค๏ธ | **Shortest Path** | [05_shortest_path.py](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/05_shortest_path.py) | Shortest Path Algorithms | โ
|
| 6 | ๐ฒ | **BST Insertion** | [06_bst.py](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/06_bst.py) | Binary Search Trees | โ
|
| 7 | ๐ | **Priority Queue** | [07_priority_queue.py](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/07_priority_queue.py) | Priority Queues | โ
|
| 8 | ๐ฆ | **Stacks and Queues** | [08_stack_queue.cpp](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/08_stack_queue.cpp) | Stacks and Queues | โ
|
| 9 | ๐ข | **Factorial Recursion** | [09_factorial_recursion.py](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/09_factorial_recursion.py) | Recursion | โ
|
| 10 | ๐ฎ | **Remove Duplicates** | [10_remove_duplicate.cpp](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/10_remove_duplicate.cpp) | Data Structures | โ
|
| 11 | ๐งฉ | **2D Point Class** | [11_2d_point.rb](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/11_2d_point.rb) | Object-Oriented Programming | โ
|
| 12 | ๐ต | **Shape and Circle** | [12_shape_circle.cpp](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/12_shape_circle.cpp) | Object-Oriented Programming | โ
|
| 13 | ๐ฐ | **Bank Account** | [13_bank_account.rb](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/13_bank_account.rb) | Object-Oriented Programming | โ
|
| 14 | ๐ญ | **Polymorphism** | [14_polymorphism.rb](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/14_polymorphism.rb) | Object-Oriented Programming | โ
|
| 15 | ๐ | **Car and Engine** | [15-car-engine.js](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/15-car-engine.js) | JavaScript Basics | โ
|
| 16 | ๐ | **Geometric Shapes** | [16-geometric-shape.js](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/16-geometric-shape.js) | JavaScript Basics | โ
|
| 17-21 | ๐๏ธ | **SQL Basics** | [sqlite.py](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/17-21/sqlite.py) | Database Basics | โ
|
| BC | ๐งน | **Quick Sort** | [quick_sort.cpp](https://github.com/lnvaldez/daily-mini-challenges/blob/main/huddle/quick_sort.cpp) | Sorting Algorithm | โ
|