Huy Do

Huy Do @huyddo

About: Full Stack SE. I love to build beautiful web apps and learn new technologies.

Location:
Denver, Co
Joined:
Jul 8, 2020

Huy Do
articles - 22 total

Bit Manipulation

Get Bit This method shifts the relevant bit to the zeroth position. Then we perform AND op...

Learn More 1 0Nov 29 '20

Bloom Filter

Bloom Filter A bloom filter is a space-efficient probabilistic data structure designed to...

Learn More 5 0Nov 23 '20

Graph, Disjoint Set

Graph In computer science, a graph is an abstract data type that is meant to implement the...

Learn More 6 0Nov 15 '20

Trie

Trie In computer science, a trie, also called digital tree and sometimes radix tree or pre...

Learn More 1 0Nov 9 '20

Heap, Priority Queue

Heap (data-structure) In computer science, a heap is a specialized tree-based data structu...

Learn More 6 0Nov 1 '20

Queue, Stack, Double Linked List

Queue In computer science, a queue is a particular kind of abstract data type or collectio...

Learn More 2 0Oct 26 '20

Trees

Depth-First Search (DFS) Depth-first search (DFS) is an algorithm for traversing or search...

Learn More 0 0Oct 18 '20

Trees and Searches

Depth-First Search (DFS) Depth-first search (DFS) is an algorithm for traversing or search...

Learn More 1 0Oct 11 '20

Algorithms - Sorting

I will cover several popular sorting algorithms such as Bubble Sort, Selection Sort, Insertion Sort,...

Learn More 7 0Oct 4 '20

Hash Tables

In computing, a hash table (hash map) is a data structure that implements an associative array abstra...

Learn More 1 0Sep 27 '20

JavaScript Algorithms and Data Structures

Data Structures A data structure is a particular way of organizing and sorting data in a c...

Learn More 7 0Sep 20 '20

Linked List

Linked List A linked list is an ordered collection of data elements. A data element can be...

Learn More 1 0Sep 15 '20

Big O Notation

Time-Complexity Big-O notation is a common means of describing the performance or complexi...

Learn More 1 0Sep 7 '20

Coding interview challenges

There is common interview process by asking you to solve the challenges on online platform or on the...

Learn More 32 0Aug 30 '20

Countdown Timer part 2

Schedule the Clock Automatically Let’s say we want the clock to show up on certain days bu...

Learn More 1 0Aug 24 '20

Countdown Timer

This article explains how to build countdown timer in Javascript. It will make your code faster, web...

Learn More 8 0Aug 17 '20

Find duplicate or repeat elements in js array

There are a couple of ways to count duplicate elements in a javascript array. by using the forEach o...

Learn More 91 7Aug 10 '20

State Hook

Hooks let you use state and other React features without writing a class. import React, { useState...

Learn More 1 0Aug 2 '20

React Hook

React Hooks Hooks are a new addition in React 16.8. They let you use state and other React...

Learn More 6 0Aug 2 '20

React Hooks

React Hooks Hooks are a new addition in React 16.8. They let you use state and other React...

Learn More 2 0Jul 26 '20

JavaScript methods will help you code better

These JavaScript methods will help your daily job easier. I have not used these methods a lot, but I...

Learn More 5 0Jul 19 '20

JavaScript Array

There are several methods that you can mutate array: shift, unshift, push, pop, splice are mutators....

Learn More 6 2Jul 12 '20