KSKriti Sharmainkritisharma.hashnode.dev·Sep 12, 2022 · 8 min readJavascript interview preparation cheat sheetHey Geeks, Here, I am going to discuss the most important topics of javascript that every single javascript developer should know. I know somewhere during journey of learning javascript we all face difficulties to understand these topics. But master...00
KSKriti Sharmainkritisharma.hashnode.dev·Aug 27, 2022 · 3 min readArrays in JavascriptArrays in javascript is an ordered-list which is used to store different types of elements. In JavaScript array is a single variable that stores multiple elements and it can be accessible through indices. Creating javascript Arrays: There are two wa...00
KSKriti Sharmainkritisharma.hashnode.dev·Jun 21, 2022 · 2 min readTwo Sum II - Input array is sorted*Medium Leetcode problem no: https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/ Problem statement: There is given sorted input array in which we have to find two numbers such that they add up to a specific target number. Have to write ...00
KSKriti Sharmainkritisharma.hashnode.dev·Jun 17, 2022 · 2 min readRemove palindromic subsequenceLeetCode Problem: https://leetcode.com/problems/remove-palindromic-subsequences/submissions/ Problem Statement : Remove Palindrome Subsequence We have String s which is a combination of two letters ‘a’ and ‘b’. We have to remove palindromic subseque...00