MD AKHLAK UD JAMANdictionary-app.hashnode.dev·Jan 10, 2025Developing a Smart and User-Friendly Dictionary App with FlutterIntroduction As a Flutter developer, I enjoy building applications that simplify everyday tasks. My latest project, a Dictionary App, is designed to provide quick and accurate word definitions with a clean and intuitive interface. This project was an...dictionary
Ishwor Kafleishwor.hashnode.dev·Jan 5, 2025ChainMapOfficial Definition: dict-like class for creating a single view of multiple mappings. Added to Python 3.3's collections module, ChainMap isn't just another dict-like class - it's an elegant solution that transforms multiple dictionaries into a single...Python Series: Useful Tools, Techniques And Modern Development PracticesChainMap
Amulyaawscloudbasics.hashnode.dev·Dec 16, 2024Python for DevOps: Mastering Dictionaries and API Interactions with GitHubIntroduction Understanding Dictionaries in Python Why Dictionaries? Dictionaries solve a common problem in data representation by using key-value pairs. Unlike lists, which store items in a sequential manner, dictionaries allow you to: Store complex...pythonPython
Lim Woojaejaylog.hashnode.dev·Dec 15, 2024[Python] How to Create Immutable Dictionaries & Sets in Python?What are Immutable Dictionaries & Sets? Before reading this article, you should have an understanding of mutable and immutable types in python. You can look at my article that explains them pretty easy: [CS fundamentals] Mutable vs. Immutable. Dictot...PythonPython
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 14, 2024Generic COLLECTIONS part 1This backpack is special because it can hold all sorts of things, like toys, books, or even snacks! You can put things in, take them out, and organize them in different ways. In coding we call it a Collection. Let's understand them one by one. List<T...hash set
Brian Maimbabrianmaimba.hashnode.dev·Oct 31, 2024Two sumThis article will highlight two approaches the brute force and the efficient approach Question Leetcode link -> https://leetcode.com/problems/two-sum/description/ Given an array of integers nums and an integer target, return indices of the two number...Leetcode Seriesleetcode
Geo J Thachankarygeothachankary.hashnode.dev·Sep 13, 2024POCO to Dictionary Conversion Techniques in C#Recently in one of my projects, I had to extract properties and values of a C# object to send as key value pairs to a third party REST API. Instead of manually extracting each property, I wanted a way to convert a Plain Old CLR Object (POCO) into a D...137 readsC#
Shantanu Sharmadatapoints.hashnode.dev·Aug 12, 2024Make Your Python Code Faster with Dictionary LookupsIn the world of programming, efficiency is key. Whether you're a beginner or a seasoned developer, finding ways to optimize your code can make a significant difference, especially when working with large datasets. One powerful tool in Python that oft...58 readsHow to write effective Python Programs ?Python
Sandhya Kondmarekloudsan9.hashnode.dev·Aug 4, 2024Essential Python Data Types Explained for New ProgrammersPython ek versatile aur powerful programming language hai jo alag-alag data types ko support karti hai. Yeh blog post Python ke primary data types ke baare me batayegi, including complex numbers, strings, booleans, lists, tuples, dictionaries, aur se...datatypes
Bhavesh Jadhavbhaveshjadhav.hashnode.dev·Jun 2, 2024Building a Simple ATM System in Python: A Casual WalkthroughHey everyone, So, I wanted to share with you all how I put together this simple ATM system in Python. It's nothing fancy, but it gets the job done! First off, I set up a couple of dictionaries to keep track of card numbers, PINs, and account balances...10 likes·70 readsPython