Lakshya Thakur
Lakshya Thakur's blog

Lakshya Thakur's blog

Follow
Follow
homeRandom DS/AlgoSponsor By ChanceHackathon experienceUnsplashSoundcloudStackOverflow
Tag

data structures

#data-structures

More content

Read more stories on Hashnode


Articles with this tag

ZigZag ⚡ traverse that binary tree 🌲

Sep 26, 20216 min read586 views

Today we are going to solve two DS problems that are actually very similar. They are respectively :- level order traversal in binary tree zigzag...

ZigZag ⚡ traverse that binary tree 🌲

Implementing String repeat() function in JS

Jul 8, 20216 min read1.2K views

As per MDN, The repeat() method constructs and returns a new string which contains the specified number of copies of the string on which it was...

Implementing String repeat() function in JS

Implementing the DOM contains() method

Jul 6, 20214 min read894 views

As per MDN, The Node.contains() method returns a Boolean value indicating whether a node is a descendant of a given node, i.e. the node itself, one...

Implementing the DOM contains() method

Determine if a BST is valid or not

Jul 3, 20215 min read764 views

This article is the first one in the Random DS/Algo series. The purpose of this series is to just act as random collection of DS/Algo problems I...

Determine if a BST is valid or not

Making a basic deepCopy function in JS

Jun 29, 20216 min read123 views

Important - If planning to read this article, do it completely as there are some corrections done later. Okay let's start 👇 By default in JS, if we...

Making a basic deepCopy function in JS