Rhytham Negirhythamnegi.com·Sep 17, 2024OpenAI's O1 Models: Deep Dive into Reasoning and Problem SolvingHey everyone! My friend recently got access to OpenAI's shiny new O1 models (O1 and O1-Preview), and I've been lucky enough to play around with them. Let me tell you, these models are something else! They're designed for deep reasoning and problem-so...DiscussO1
Patrick Sungkharismapatricksungkharisma.hashnode.dev·Sep 15, 2024Innovative Slotting System for Feeds ApplicationIntroduction When I browse through social media like Instagram or Youtube, I wondered how do they design their feeds section. Imagining myself as the product manager of their team, I would have liked to do two of these important things. Freely chang...Discuss·1 likeFeed
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
Mixed Dumpmixedump.hashnode.dev·Aug 26, 2024Understanding MathematicsA study guide by Peter Alfeld. I wrote this page for students at the University of Utah. You may find it useful whoever you are, and you are welcome to use it, but I'm going to assume that you are such a student (probably an undergraduate), and I'll ...DiscussMathematics
Mixed Dumpmixedump.hashnode.dev·Aug 21, 2024G. Polya, How to Solve ItUNDERSTANDING THE PROBLEM First. You have to understand the problem. What is the unknown? What are the data? What is the condition? Is it possible to satisfy the condition? Is the condition sufficient to determine the unknown? Or is it insufficien...DiscussPeter Alfeld
SANTOSH SINGHsantoshsingh.hashnode.dev·Aug 19, 2024Mastering the Sliding Window Technique in Problem SolvingThe sliding window method is a powerful technique that helps in optimizing solutions for a variety of problems, particularly those involving arrays or sequences. This approach is often more efficient than traditional methods like nested loops, making...Discuss·3 likesProblem Solvers' Journalvariable sliding window
Shaurya Pethershaurya.hashnode.dev·Aug 18, 2024Search in Rotated ArrayThis is part two of the DSA Series where we'll solve the 'Search in Rotated Array Problem'. Problem Statement Assume there is an integer array nums sorted in ascending order (with distinct values). Prior to being passed to your function, nums is poss...DiscussJava
Jaynil Gaglanijaynil-gaglani.hashnode.dev·Aug 16, 2024Frontend Interview Experience at Clipboard HealthHello folks,I had the opportunity to interview recently at Clipboard Health (a US-based healthcare startup) for the Frontend Software Engineer role. This role is more inclined towards the frontend domain, and I will share my interview experience in t...Discuss·24 likes·1.2K readsInterview ExperiencesJavaScript
Shaurya Pethershaurya.hashnode.dev·Aug 10, 2024Maximum Subarray Sum using Kadane's AlgorithmThis is part 1 of the DSA series where we will be going through the Kadane's Algorithm to solve the 'Maximum Subarray Sum' problem. Let us first understand what a subarray is. Consider the following array of integers: int arr[] = {7,2,0,5}; A subarra...DiscussJava
BetaMizeforElixirMastersblog.elixirmasters.com·Aug 8, 2024Anagram Problem in ElixirAn anagram is a rearrangement of letters to form a new word. For example, "owns" is an anagram of "snow". An interesting twist is that a word is not considered its own anagram. In this article, we will explore how to solve the anagram problem using E...DiscussElixir