Sushil Kumar Mishrasushilsblog.hashnode.dev·Aug 11, 2024Step-by-Step Guide to Linked List ImplementationIntroduction to Linked Lists Linked lists are a fundamental data structure in computer science, allowing for efficient insertion and deletion of elements. Unlike arrays, linked lists do not require a contiguous block of memory, making them more flexi...2 likesarray
Chetan Dattachetan77.hashnode.dev·Jul 28, 2024LL 3 - Doubly Linked ListConstruction of Doubly Linked List public static Node constructDll(int arr[]){ Node head = new Node(0); Node temp = head; for (int num: arr){ Node newNode = new Node(num); temp.next = newNode; newNode.prev = temp;...Leetcodelinked list
Chetan Dattachetan77.hashnode.dev·Jul 27, 2024LL 1 - Single Linked ListConstruction of Linked List Input: n = 5 arr = [1,2,3,4,5] Output: 1 2 3 4 5 Explanation: Linked list for the given array will be 1->2->3->4->5 Here, the head points to a dummy which doesn't store anything. Later, when we return the new head pointer...Leetcodelinked list
Mahira Technology Private Limitedmahiratechnology.hashnode.dev·Jul 15, 2024Simplify Your Git Management: Automate Merged Branch Deletion in GitHub with PythonOverview :- Managing branches in Git can quickly become overwhelming, especially in active projects with multiple contributors. After merging branches, cleaning up the old ones can be tedious and often forgotten. Automating this process not only keep...GitHub
Mahira Technology Private Limitedmahiratechnology.hashnode.dev·Jun 19, 2024Ultimate Guide: How to Effectively Delete a Schema from Snowflake DBOverview :- In the realm of managing databases, especially on platforms like Snowflake DB, understanding how to manage schemas — including deleting them when necessary — is crucial for maintaining a clean and efficient database environment. This guid...snowflake
Mahira Technology Private Limitedmahiratechnology.hashnode.dev·Jun 17, 2024Create the API Integration for AWS in SnowflakeOverview -- In today’s world of data-driven decision-making, integrating data from different sources has become crucial. One powerful combination is integrating AWS with Snowflake. Snowflake is a robust cloud-based data warehousing solution, and when...snowflake
Mahira Technology Private Limitedmahiratechnology.hashnode.dev·May 7, 2024The Power of Python: Deleting AWS Transcribe Jobs Quickly and EffectivelyOverview :- Have you ever found yourself scrolling through pages of AWS Transcribe jobs, wondering how you could clear out old or unnecessary ones without spending the whole afternoon clicking away? It turns out, Python is your friend in this scenari...AWS
Shankarshankar-malik.hashnode.dev·May 28, 2022All About File DeletionHow data is deleted? So, your answer to this question will be like just go the specific location in your system and delete the desired file/folder. After deleting it from your PC it will move to recycle bin and then if we want to permanently delete t...27 readsdata