Pratikshapratiksha3101.hashnode.dev·Nov 20, 2024Recursion: Unraveling the Loops of Thought and CodeRecently, I revisited the concept of recursion, but this time, it struck me differently than it did back in college. Suddenly, I saw a connection between recursion in programming and something many of us experience daily—overthinking. Don’t you think...Discuss·6 likes·44 readsRecursion
IOi-o.hashnode.dev·Nov 19, 2024DeveloperIn July 2024, I begun research into a career switch into Tech. I decided that Web Development might work for me and so, I began looking into learning Front-End skills. I took courses in HTML, CSS, Web Development, Programming Fundamentals and more. N...Discussbeginner
pallavi chauhaninnovateitworld.hashnode.dev·Nov 14, 2024The Software Tester’s Toolkit: Must-Have Skills and Tools for 2024With software testing advancing rapidly, a tester's toolkit must be equipped with up-to-date skills and technologies to keep pace. As new frameworks, automation tools, and methodologies emerge, testers need to stay adaptable and well-informed. This b...DiscussAnalytical Skills
Dilip PatelforDilip Patel's Kotlin blogkotlinmastery.hashnode.dev·Nov 7, 2024DSA With KotlinFundamentals Fundamentals of Problem Solving Basics Positive or Negative number Even or Odd number Sum of First N Natural numbers Sum of N natural numbers Sum of numbers in a given range Greatest of two numbers Greatest of the Three numbers...DiscussDSADSAinkotlin
Bongi Sibandatrialnerr.hashnode.dev·Nov 1, 2024Solving Best Time to Buy and Sell Stock Leetcode ProblemThis was a problem that I didn’t fully understand the first time I saw it. It took me a while to come up with a brute force solution. So I am very happy that I understand it enough to share not one but TWO solutions with you. https://media.giphy.com/...Discuss·10 likes·41 readsleetcode
Salman Iyadsalmaniyad.hashnode.dev·Oct 29, 2024أهم الأنماط البرمجية لحل مشاكل المقابلات التقنية بكفاءةلما نحكي عن البرمجة التنافسية أو المقابلات التقنية، بنلاحظ إنه المشكلة مش بعدد المسائل اللي بنحلها، بل في الأنماط البرمجية اللي بنتعلمها ونتقن استخدامها. تعلم الخوارزميات وأنماط البرمجة الفعّالة مش بس بيمكنك من حل مجموعة متنوعة من المشاكل بسرعة وكفاء...Discusspatterns
Bongi Sibandatrialnerr.hashnode.dev·Oct 25, 2024Solving Majority Element ChallengeProblem: 169. Majority Element Given an array nums of size n, return the majority element. The majority element is the element that appears more than *⌊n / 2⌋ , times. You may assume that the majority element always exists in the array. * ⌊n⌋ means t...Discuss·20 likes·54 readsJavaScript
Chizaram Nwazuoblog.chizo.co·Oct 22, 2024Frustration-Driven-Development: Don’t do itAs software developers, we’ve all been there: you’re staring at a block of code, the bug you’re hunting down seems to defy logic, and no matter how many Stack Overflow threads you read or how many rubber ducks you talk to, the problem remains unsolve...Sam-Obisike Chibueze and 2 others are discussing this3 people are discussing thisDiscuss·28 likes·94 readsDeveloper
SHABANA FATHIMA Sjr-dev.hashnode.dev·Oct 21, 2024My Tech JourneyJr. Dev: My Journey So Far – The Learning, Wins, Failures, and Perspectives Beginnings of a Zealous Explorer When I first embarked on this tech journey as a Computer Science and Engineering student, I was overwhelmed yet eager to dive into the vast o...Discuss·1 likecoding
Ashikur Rahmanashikonweb.hashnode.dev·Oct 10, 2024Understanding the Two-Pointer TheoryThe two-pointer theory is a technique commonly used to solve array or linked list problems in a more efficient manner. Instead of using nested loops, which can increase the time complexity of a problem, two-pointer theory allows us to traverse the da...Discuss·1 likeTutorial