🚀 Day 14 – Sort a List Without Using sort() (Python) 💻 Today’s task: Sort a list without using the built-in sort() function. 🔍 Explored alternative approaches: • Using lambda functions 🧠 • Using slicing techniques 🔪 📌 This exercise helped me understand: • Custom sorting logic ⚙️ • How Python handles data manipulation internally 🔍 • Writing optimized and flexible code ✨ ✨ Challenging myself to go beyond built-in functions and strengthen problem-solving skills. 📈 Consistency is key — learning something new every day. #Python #100DaysOfCode #CodingJourney #Programming #ProblemSolving #Developer #LearnToCode #Tech #PythonTips
Sort a List Without sort() in Python
More Relevant Posts
-
🚀 Day 21 – Merge Two Sorted Lists (Python) 💻 Today’s task: Write a program to merge two sorted lists into a single sorted list. 🔍 The goal is to combine both lists while maintaining the sorted order. 📌 This exercise helped me understand: • Two-pointer technique 🔁 • Efficient list traversal ⚙️ • Writing optimized and clean logic ✨ ✨ A classic problem that builds a strong foundation for algorithms like merge sort. 📈 Learning step by step and improving consistency every day. #Python #100DaysOfCode #CodingJourney #Programming #ProblemSolving #Developer #LearnToCode #Tech #PythonTips #DataStructures
To view or add a comment, sign in
-
-
🚀 Day 13 – Second Largest Number in a List (Python) 💻 Today’s task: Find the second largest number in a list. 🔍 Explored how to handle: • Duplicate values 🔁 • Edge cases (small lists, same elements) ⚠️ • Efficient comparison logic ⚙️ 📌 This exercise helped me improve: • Logical thinking 🧠 • List manipulation skills 📋 • Writing optimized solutions ✨ ✨ Simple problem, but important for building a strong foundation in problem-solving. 📈 Learning something new every day with consistency. #Python #100DaysOfCode #CodingJourney #Programming #ProblemSolving #Developer #LearnToCode #Tech #PythonTips
To view or add a comment, sign in
-
-
🚀 Day 18 – Flatten a Nested List (Python) 💻 Today’s task: Write a function to flatten a nested list. 🔍 A nested list contains elements that can be lists within lists. The goal is to convert it into a single, flat list. 📌 This exercise helped me understand: • Recursion concepts 🔁 • List traversal techniques 🧩 • Writing flexible and reusable functions ⚙️ ✨ A great problem to improve logical thinking and handle complex data structures. 📈 Learning step by step and staying consistent. #Python #100DaysOfCode #CodingJourney #Programming #ProblemSolving #Developer #LearnToCode #Tech #PythonTips #DataStructures
To view or add a comment, sign in
-
🚀 Day 18–24 of My Python Learning Journey Over the past few days, I’ve been diving deeper into Python and strengthening my core concepts 💻 Here’s what I explored 👇 🔹 Functions & Arguments 🔹 Types of Variables (Local, Global, Nonlocal) 🔹 Lambda Functions 🔹 Map & Reduce 🔹 Floor Function 🔹 Nested Functions 🔹 Function Aliasing 🔹 Generating Random Numbers 🔹 Method Overloading in Python ✨ This phase helped me understand how Python handles functions in a powerful and flexible way. 📌 One key takeaway: Functions are not just reusable blocks — they can be treated like objects, passed around, and optimized using tools like lambda, map & reduce. I’m building consistency and focusing on strong fundamentals every day 💪 #Python #LearningJourney #100DaysOfCode #Programming #Coding #PythonBasics #DeveloperJourney
To view or add a comment, sign in
-
-
Understanding Python’s core data structures is the first step toward writing efficient code. 🐍 • List → Ordered, mutable, and allows duplicate elements. Perfect when you need a collection that can change. • Tuple → Ordered but immutable, meaning once created it cannot be modified. Ideal for fixed data. • Dictionary → Stores data in key–value pairs, where keys are unique and values can be accessed quickly. Choosing the right data structure can make your code cleaner, faster, and more efficient. 🚀 #Python #PythonProgramming #DataStructures #Coding #LearnPython #Programming #TechLearning #DeveloperJourney Akhilendra Chouhan Sanjana Singh Radhika Yadav Skillcure Academy
To view or add a comment, sign in
-
-
🚀 Day 23 – Second Non-Repeating Character (Python) 💻 Today’s task: Find the second non-repeating character in a string. 🔍 The goal is to identify the second character that appears only once in the given string. 📌 This exercise helped me understand: • Character frequency counting 🔢 • String traversal 🔁 • Handling edge cases efficiently ⚠️ ✨ A slightly advanced twist on a common problem that improves logical thinking. 📈 Learning consistently and strengthening problem-solving skills every day. #Python #100DaysOfCode #CodingJourney #Programming #ProblemSolving #Developer #LearnToCode #Tech #PythonTips #DataStructures
To view or add a comment, sign in
-
-
🚀 Python Practice – Function Examples Taking my Python learning a step further by practicing real-world function-based problems 🐍 In this session, I worked on: ✔️ Temperature Conversion (Celsius ↔ Fahrenheit) ✔️ Password Strength Checker ✔️ Shopping Cart Total Cost Calculator ✔️ Palindrome Checker ✔️ Factorial using Recursion These examples helped me understand how functions can be used to solve practical problems and write reusable, structured code. A big thanks to Krish Naik Sir for his amazing teaching and clear explanations 🙌 Documented all my practice in a Jupyter Notebook and shared it as a PDF to track my progress. Learning by building real logic step by step 📊 #Python #Functions #Practice #LearningJourney #DataAnalytics #Coding
To view or add a comment, sign in
-
At this point, Python is starting to feel less like a language… and more like a toolkit. Today’s Python MahaRevision 🧠 Chapter 13: Advanced Python (Part 2) This chapter introduced some really powerful and practical concepts: → Virtual environments → pip freeze (managing dependencies) → Lambda functions → bin() method → format() function → map, filter, reduce It’s interesting how these tools make code shorter, cleaner, and more efficient—once you understand how to use them properly. Practice set done: Worked on applying lambda functions, transforming data using map/filter, experimenting with reduce, and managing environments and dependencies. Some concepts felt a bit abstract at first (especially map/filter/reduce)… but with practice, they started making more sense. Biggest takeaway: Better tools don’t just make coding easier—they change how you think about solving problems. Still exploring, still improving. #Python #LearningInPublic #CodingJourney #Programming #AdvancedPython
To view or add a comment, sign in
-
Ever had a Python variable that should work… but suddenly doesn’t? No error. No warning. Just confusing behavior. That’s usually not a logic problem — it’s a scope problem. In Python, variables don’t exist everywhere. They live inside specific boundaries, and Python follows a strict search order to find them. Miss that… and your code starts behaving in ways that feel completely unpredictable. In my latest article, I simplified this concept into a clear mental model: • Why variables “disappear” inside functions • How Python decides which value to use • The real reason behind those “it worked before” bugs • A simple way to think about scope without memorizing rules If you’re working with Python — whether for data analysis, ML, or backend — this is one of those concepts that quietly affects everything. I’ll drop the link in the first comment 👇 What confused you more when learning Python: scope or debugging unexpected behavior? #Python #Programming #DataScience #Coding #Debugging #TechLearning
To view or add a comment, sign in
-
-
Most beginners think variables are just “boxes” 📦 That’s wrong. A variable is just a label pointing to data in memory. 👉 Example (Python): x = 10 Now x is not the value It just points to 10 👉 Change it: x = 20 Now it points somewhere else This is why: - Bugs happen - Values “change” unexpectedly If you don’t understand this, you’re just memorizing syntax—not coding. #coding #python #javaprogramming #learncoding #beginners #programming #developer #softwaredevelopment #tech #codinglife
To view or add a comment, sign in
-
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development