Syed Umer Hasansyedumerhasan.hashnode.dev·Jul 24, 2023Remove Duplicates from Sorted ArrayGiven an integer array nums sorted in non-decreasing order, remove the duplicates in-place such that each unique element appears only once. The relative order of the elements should be kept the same. Then return the number of unique elements in nums....80 readsCompetitive Programmingremove duplicates in an array
Vaishnavi pandeyvaishnavipandey.hashnode.dev·Dec 3, 2022Low-Level Design ExplainedRecently, I have studied a few things about low-level design from scratch. I wrote one small document on LLD and how to approach LLD problems; what kind of problems are being asked in most of the interviews. Here is the link -- LLD Document This c...64 readsLLD
Ishita Junejaishitajuneja.hashnode.dev·Oct 4, 2022All You Need To Know About Adobe Interview ExperienceAdobe is an epicenter of excellence! While working in different domains, you must have used adobe software or applications on a daily basis. From converting your documents to PDF or simply editing your product photo, Adobe is everywhere! But do you...39 readsProgramming Blogs
Varsha Dasvarsha-das.hashnode.dev·Sep 6, 2022Frequently asked Linked List Interview Question - Union of two linked listsProblem statement: Given two linked lists, return the union of two linked lists. This union should include all the distinct elements only. Return the head of the new list. Example : Input: L1 = 9->6->4->2->3->8 L2 = 1->2->8->6->2 Output: 1 2 3 4 6 8...DSA Essentials Handbook#linkedlists
Ronit Pradhanronit.hashnode.dev·Jun 22, 2022Clean Code : The Road Less TravelledChapter 1 : What this is about. It is not enough for the code to work. - Robert C. Martin (Uncle Bob) And indeed, it is not. The code needs to be readable, easily understandable without being misled, concise and simple so much that any newbie could...1 like·134 readsclean code