Youhana Sheriffblog.youhanasheriff.com·Sep 14, 2023Cracking the Code: Mastering Algorithmic Problem Solving for Technical SuccessINTRODUCTION: Algorithmic problem-solving is the backbone of software development and the core skill of aspiring programmers. Whether you’re preparing for a technical interview or looking to improve your coding abilities, mastering common coding chal...DiscussProblem Solving
Amr Awadamrawad.hashnode.dev·Sep 7, 2023Real-life problem-solving #1 – My immigration thought processIntroduction to ‘Real life problem-solving’ I believe engineering is all about problem-solving; the problems may change, and the tools at your disposal may change, but it’s always about identifying the most impactful problem to solve and applying the...Discussimmigration
Arun RforRelearn Schoolblog.relearnschool.in·Sep 7, 2023What is Problem Solving and Importance of Problem Solving for Kids in 2023.One of the most significant cognitive abilities, problem-solving enables people to analyse problems, develop practical solutions, and reach decisions. It is essential for kids to start developing problem-solving skills at a young age because it is no...DiscussRelearn School
manoj gowramanojgowra.hashnode.dev·Sep 5, 2023My First Open-Source Contribution Journey: Insights and Key LearningsThe world of open source has always intrigued me—a vast landscape of collaborative coding, innovation, and shared knowledge. I had always wanted to dip my toes into this exciting realm, and that opportunity finally came when I decided to contribute t...DiscussOpen Source
Haneunhanlee.hashnode.dev·Aug 29, 2023LeetCode 2413. Smallest Even Multiple Java SolutionProblem Smallest Even Multiple - LeetCode Solution Approach The term "multiple of 2" indicates that the number must be even. The term "multiple of n" indicates that the number must be a multiple of n. This problem is about finding the smallest eve...DiscussAlgorithm Solving Studyalgorithm
Haneunhanlee.hashnode.dev·Aug 22, 2023LeetCode 75. Sort Colors Java SolutionProblem Sort Colors - LeetCode Solution Approach This problem asks whether you can implement a sorting algorithm without using built-in sorting functions or methods. Since the input consists of only 0, 1, and 2, it is possible to solve it using a l...DiscussAlgorithm Solving Studyalgorithm
Iver Punayaniverdev.hashnode.dev·Aug 19, 2023Question-Driven Development: A New Paradigm for Problem SolvingIn the fast-evolving landscape of software development, innovative approaches are constantly emerging to streamline processes and enhance outcomes. One such methodology that's gaining traction is "Question-Driven Development" (QDD). This approach put...DiscussProgramming Blogs
Akash Devcoolcoderr.hashnode.dev·Aug 19, 20235 step approach for problem solvingWhile learning computer science, we usually grasp the theory of algorithms, but often, theoretical knowledge isn't sufficient. While it's essential to have a deep understanding of the concepts, it's not enough. When we're in an interview, and the int...Discuss·1 likeproblem solving skills
Olamide Aliyudevlam.hashnode.dev·Aug 11, 2023Leet Code 347 Top K Frequent ElementsTop K Frequent Elements Medium Given an integer array nums and an integer k, return the k most frequent elements. You may return the answer in any order. Example 1: Input: nums = [1,1,1,2,2,3], k = 2 Output: [1,2] Example 2: Input: nums = [1], k = 1 ...DiscussData Structures and Algorithms in Python with LeetCode Problem Solving
Priyojit Singhanerdbash.hashnode.dev·Aug 9, 2023Write a program to reverse an arrayYou are given an array, and you will have to reverse the array elements. Pretty simple right? Well the brute force approach that comes to your mind is that let's just take another empty array of the size the same as the length of the original array a...Discussarray