Payal Porwalcodeswithpayal.hashnode.dev·12 hours agoJavaScript Control Flow: A Deep DiveIn JavaScript, control flow determines the order in which statements are executed in a program. Control flow structures allow us to make decisions, loop through data, and execute code conditionally. Let's explore these structures in depth with explan...if-else
kop tichi marcel rodriguethe-palindrome-checker-problem-java.hashnode.dev·Feb 17, 2025Solving the Palindrome Checker Problem: From Basic to Optimized SolutionsIntroduction Palindromes are fascinating! Whether it's a word, phrase, or number, a palindrome reads the same backward as forward. In this blog post, we'll tackle the Palindrome Checker problem, starting with a basic solution and refining it to meet ...2 likesJava
G Herbowiczainode.hashnode.dev·Jan 21, 2025From Symbolic Logic to Deep LearningGenerative AI has emerged as a powerful force, revolutionizing how we create and interact with information. At the heart of this revolution lies a fundamental shift: a move away from the traditional symbolic logic that underpinned early AI systems to...logic
Ugoaneni Victorexploreoshe.hashnode.dev·Jan 17, 2025A quick Introduction to Logic ProgrammingWhen developers or scientist want computers to act a certain way, they often times communicate to the system in a language that can somewhat be implemented by the computer's processor. These languages, owing to how they're structured and written can ...Logic Programming
Angie Byronwebchick.hashnode.dev·Dec 15, 2024Creating decision-tree / "Choose Your Own Adventure" logic in Google FormsGoogle Forms is kind of a strange topic for a tech blog, I realize, but hear me out. ;) Background/Context I’m volunteering with an organization that helps local senior citizens, and they are piloting a program that sends approved volunteers into old...53 readsNo Code
sujithamypersonalblog.hashnode.dev·Nov 14, 2024Convex and Non-convex functionsA convex function and a non-convex function differ primarily in the shape of their curves and in the nature of their optimization landscapes, which impacts how we can use techniques like gradient descent to find minimum points effectively. Convex Fun...Machine Learning
Stephane Bersierbersier.hashnode.dev·Oct 21, 2024Proposed type reduction rule for Scala 3Below is a copy of a draft outlining the proposal of an additional rule for match type reduction in Scala 3. It was shared (as a Mathcha link) on Scala Contributors, as a follow-up to this discussion. In this draft is presented an additional subtypin...Scala
Danny Crastoblog.danwald.me·Sep 21, 2024Python's all docs are misleadingGoing by the documentation for all, one would think all iterables will early return. The following code will throw an AttributeError on the last item of the list iteratable. def bad_all(o: object, att: str, l: list): if all([o is not None, getat...Python
Virat Singhlearn-data-structure.hashnode.dev·Sep 17, 2024Remove Duplicates from the Sorted ArrayRemove Duplicate from Sorted Array:- This problem flows the use of two pointer approach To solve this we need to first develop the intuition behind this so let’s start building the intuition behind this problem. Intuition building Whenever we talk a...DATA Structure (Arrays)DSA
Ivanbyteup.co·Sep 11, 2024Part II: Foundations of Logical Thinking in Programming, Logical ConnectorsLogical Connectors Introduction If you haven't read the previous article If you haven't read the previous article, please read it first to understand the basic concepts quite well. With this second part, I can provide real-life examples of handling u...Math