Darshan Mandadedarshancodes.hashnode.net·Aug 27, 2022What do I do when I'm stuck as a developer? And some online communities that help me in problem solving.Introduction 👋 Hi there, This is my 2nd article for the #4articles4weeks challenge. In this article, I'll be going to tell you What do I do when I'm stuck as a developer? And which are some online communities that help me in problem-solving and you ...Discuss·34 likes·93 reads#week2
Belinda Marion Kobusingyebelindamarionk.hashnode.net·Jan 7, 2023Juggling Grad School and Dev Work-DevRetro 20222022 was a year of becoming a better programmer and investing more in personal development. It's hard to believe it's almost been a full year since I joined AirQo. Juggling school and work have been a whole ballgame for me this year. Keep reading to ...Emmilly Immaculate Namuganga and 1 other are discussing this2 people are discussing thisDiscuss·21 likes·131 reads#DevRetro2022
Amr Saberamr-saber.hashnode.net·Dec 5, 2022Fast Power AlgorithmWhen we need to calculate the value of some number base raised to the power of another number exp we can do so naively using the following algorithm: def power(base, exp): result := 1 for i = 1 to exp: result *= base return result The pro...Discuss·12 likes·92 readsProblem Solvingproblem solving skills
Nitish Kumarnitishkr.hashnode.net·Apr 23, 2023Why Go is the Best Language Out There for Solving Real-World ProblemsThe best language is the one that is the perfect compromise between cost, time, and performance, and currently, Go fits this bill. In this article, we’ll discuss why Go is the best language for solving real-world problems. The Perfect Compromise When...Discuss·11 likes·29 readsgolang
Desta Zerihundesta-zerihun.hashnode.net·Apr 23, 2023System Design: Netflix's Complete ArchitectureWhat is Netflix? Netflix is a popular streaming service that offers a vast catalog of movies, TV shows, and original content. It's available on smart TVs, through streaming devices, and even on your smartphone and tablet using the official app for iO...DiscussSystem Design
Maksudur Rahman Joymaksudur.hashnode.net·Apr 8, 2023JavaScript - FizzBuzz SolutionsWhat is FizzBuzz? FizzBuzz is a programming problem that involves iterating through a series of numbers and replacing certain values with the words "Fizz" or "Buzz" based on whether they are divisible by 3 or 5, respectively. The goal is to print out...Discuss·10 likes·27 readsJavaScript
Viknesh .Vviknesh.hashnode.net·Apr 4, 2023The Ultimate Guide to Solving LeetCode Problems: Tips for Newbies1) Jumping straight into coding: One common mistake is to jump straight into coding without fully understanding the problem. It's important to take the time to read and understand the problem statement and constraints before starting to code. 2) Igno...Discussleetcode
Kenneth Darrick Quigginskenscode.hashnode.net·Mar 31, 2023Solving Branch SumsWrite a function that takes in a Binary Tree and returns a list of its branch sums ordered from the leftmost branch sum to the rightmost branch sum. Code Explanation The code defines a class called BinaryTree with an __init__ method that initializes ...Discusscoding
Christian Lundlundchristian.hashnode.net·Mar 31, 2023RecursionPhoto credit to Giordano Rossoni on Unsplash Brief description Recursion is a problem-solving technique that can be used when a problem can be solved by solving one or more, smaller versions of the problem itself, often called divide and conquer. In...DiscussRecursion
Prajwal Haniyaprajwalhaniya.hashnode.net·Mar 25, 2023What are some of the important array problems? | Techletter #14Two Sum Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. (The target will be the sum of two consecutive elements) const twoSum = (nums, target) => { let numbers = [] fo...DiscussJavaScript
Birnadin Erickbirnadine.hashnode.net·Mar 22, 2023Day 27: Filling the Gap IITLDR; I voluntarily built a website for my school and I am documenting the journey in 2 parts as this is 21 days of work. In this blog, I spent time explaining how I integrated the ghost project, what I did to overcome ghost's self-pointing assets an...DiscussCreating birn.ccRegular Expressions
Subramanya M Raosubramanyarao.hashnode.net·Mar 18, 2023Effortless Problem-solving: Save Your Leetcode Submissions with One Click!Today I would like to introduce a browser extension that is highly beneficial for anyone who uses leet code to practice problem-solving. The extension is called Leethub. What is Leethub? Leethub is a chrome extension that automatically pushes your co...Discussleetcode
UHuh.hashnode.net·Mar 3, 2023Leetcode 21 || Merge Two Sorted ListsProblem Link: https://leetcode.com/problems/merge-two-sorted-lists/ In this problem, two input LinkedLists are given which are sorted already. We have to merge these two lists so that the output LinkedList is also sorted. Solution To solve this probl...Discuss·26 readsProblem Solving