Chetan Dattachetan77.hashnode.dev·Aug 4, 2024LL 14 - Add 1 to a Linked List NumberProblem You are given a linked list where each element in the list is a node and have an integer data. You need to add 1 to the number formed by concatinating all the list node numbers together and return the head of the modified linked list. (link) ...LeetcodeAdd-1-to-a-linked-list-number
Sujit Nirmalblackshadow.hashnode.dev·Jul 31, 2024"Deep Dive into Neural Networks: Understanding the Basics and Beyond"Introduction Neural networks are the backbone of modern machine learning. In this blog, we'll explore the fundamentals of neural networks, their architecture, and how they work. We'll also dive into some advanced concepts and provide hands-on example...neural networks
Chetan Dattachetan77.hashnode.dev·Jul 28, 2024LL 6 - Reverse Linked ListProblem Given the head of a singly linked list, reverse the list, and return the reversed list. (link) Example 1: Input: head = [1,2,3,4,5] Output: [5,4,3,2,1] Example 2: Input: head = [1,2] Output: [2,1] Example 3: Input: head = [] Output: Solu...LeetcodeSingly Linked List
Hankyu Kimhankyukim.hashnode.dev·Jun 4, 2024git submodule cloneLet's clone the project with submodules! git clone {git address} When you clone a project with submodules, you might find the submodule directories are empty. This happens because, by default, Git does not automatically clone the content of submodul...Git