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...
Today 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...
Problem 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...
Problem 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...
Problem 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...
Problem 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 ...
Problem 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...