Parv Manglanilivewebsite.hashnode.dev·Jan 27, 2024My first project through HTML and CSS.In this project, i made a pemplate as same as one image of a shoe sell from a website. I used so many things of HTML and CSS. I learned class concept in css and many things about padding, border, margin and content. I also learn about transitions, tr...2 likes·43 reads@anuragtiwarime
Parv Manglanilivewebsite.hashnode.dev·Jan 23, 2024My first live websiteToday i started my web development journey and made the accounts on Github and Vercel and made my first website live. First of all I wrote a code on html through vs code . in that, i learned what is boiled plate code and what are Emmet shortcuts. Bas...14 likes·87 readsGitHub
Shreyash Chavhanstruglingblogs.hashnode.dev·Jul 29, 2023Two Sum II - Input Array Is SortedProblem statement Find two numbers in a sorted non-decreasing order 1-indexed array that adds up to the target. Return their indices (1-indexed) as [index1, index2] in an integer array of length 2. The solution should use constant extra space. Constr...SanketSingh
Shreyash Chavhanstruglingblogs.hashnode.dev·Jul 27, 2023K-diff Pairs in an ArrayProblem statement Given an array of integer nums and an integer k, return the number of unique k-diff pairs in the array. A k-diff pair is an integer pair (nums[i], nums[j]), where the following is true: 0 <= i, j < nums.length i != j |nums[i] - n...SanketSingh
Shreyash Chavhanstruglingblogs.hashnode.dev·Jul 20, 2023Vaasya and StringsProblem statement Given a string of 'a's and 'b's of length n, find the maximum length of a substring with consecutive equal letters. You can change at most k characters in the original string. What is the maximum length of the substring? Constraints...SanketSingh
Shreyash Chavhanstruglingblogs.hashnode.dev·Jul 19, 2023Sort ColorsProblem statement Sort the array containing red, white, and blue colors (0, 1, 2) in-place without using the library's sort function. Use the Dutch National Flag algorithm. Constraints n == nums.length 1 <= n <= 300 nums[i] is either 0, 1, or 2 ...SanketSingh
Shreyash Chavhanstruglingblogs.hashnode.dev·Jul 18, 2023Merge two sorted arraysProblem statement Merge two sorted arrays nums1 and nums2 into nums1 of length m + n. The result should be a single sorted array in non-decreasing order. nums1 has m elements at the beginning, followed by n zeros. nums2 has n elements. Constraints n...SanketSingh