Abhishek Shuklaabshukla.hashnode.dev·Sep 14, 2024Creating a Promise.race() polyfillProblem Link: https://bigfrontend.dev/problem/implement-Promise-race Continuing the Knowing JS series, with a new question! First things first, as usual :) What is a Promise? An object that represents an eventual completion of failure of an asynchron...DiscussKnowing JSJavaScript
Abhishek Shuklaabshukla.hashnode.dev·Sep 12, 2024Creating a Promise.any() polyfillProblem Link: https://bigfrontend.dev/problem/implement-Promise-any First things first, as usual :) What is a Promise? An object that represents an eventual completion of failure of an asynchronous operation What is a polyfill? A function or a snippe...DiscussKnowing JSJavaScript
Fatima Jannatmahia.hashnode.dev·Aug 31, 2024A Recipe for Problem SolvingIn this blog, I'll show you problem-solving steps that are helpful during the interview process or when you face a tough challenge. Let's start! Step 1: Understand the problem Many people learn coding, but the biggest challenge is problem-solving. An...DiscussPython Data Structure and Algorithmproblem solving skills
vatsalya parasharvatsalya1.hashnode.dev·Aug 28, 2024🔧 Solving Shell Scripting Errors: A DevOps Practice Insight 💡While working on a shell scripting task to automate backups, I encountered some common but critical errors that are worth sharing. Each issue was a learning opportunity and highlighted the importance of meticulous error handling in DevOps. 🚨 Error...DiscussDevops
Susan Odiisusanodii.hashnode.dev·Aug 25, 2024Counter - LeetCode: 30 Days of JavaScriptWelcome to day two LeetCode challenge in the "30 Days of JavaScript" series. We will be solving this problem: Given an integer n, return a counter function. This counter function initially returns n and then returns 1 more than the previous value eve...Discuss·10 likesleetcode
Musab Rayantechblogsbymusab.hashnode.dev·Aug 24, 2024Essential Techniques for Array Problem Solving You Must Know 👨💻If you are doing competitive programming (CP) or simply solving problem-solving questions on arrays, optimizing the time complexity of your solutions is important, specially when you are dealing with large inputs. Two of the most effective techniques...Discuss·1 likearray
Vivekvivblog.hashnode.dev·Aug 23, 202426. Remove Duplicates from Sorted ArrayProblem 26. Remove duplicate from sorted array intuition. We solve the problem in the optimized way . using for loop and else-if conditional statement solution . Firstly we traversed the whole array and then we check is first element is same to the n...Discussleetcode
Vivekvivblog.hashnode.dev·Aug 23, 2024Step-by-Step Guide to Remove element Leetcode Problem no. 27Problem 27 Remove all occurrences from array and return the length of final array. Intuition We solve this problem by using replacing the indices of given array method Try the code... class Solution { public int removeElement(int[] nums, int val)...Discuss27 problem
Max Comperatoremaxcomperatore.hashnode.dev·Aug 23, 2024Practical Examples of C++ ConcurrencyFor more insights and resources on programming and game development, visit my website at maxcomperatore.com. std::mutex: A std::mutex is like a bathroom door with a lock. When a thread tries to access a resource protected by the mutex, it locks the d...Discuss·31 reads#cpp #guide
Md Naseer Khannaseerkhan.hashnode.dev·Aug 22, 2024Problem Solving Techniques I UseWe are problem solvers naturally and solve problems in decided or undecided ways.Nevertheless, if our problem solving is disciplined then it can make life easier. Divide & Conquer []Simply, break down a problem into small chunks and then go after t...Discussproblem solving skills