Nhut Nguyen
Nhut Nguyen

Nhut Nguyen

Follow
homeTech ResumeStoreAboutLeetSolvenewsletter
Tag

data structures

#data-structures

More content

Read more stories on Hashnode


Articles with this tag

C++ Solution to Coding Challenge 19. Remove Nth Node From End of List

Nov 3, 20223 min read 6 views

Using the two-pointer technique to remove a node in a linked list. · Problem statement Given the head of a linked list, remove the n-th node from the end...

C++ Solution to Coding Challenge 19. Remove Nth Node From End of List

How to solve Leetcode 706. Design HashMap

Apr 22, 20223 min read 69 views

A simple implementation of a hashmap · Problem statement Design a HashMap without using any built-in hash table libraries. Implement the MyHashMap...

How to solve Leetcode 706. Design HashMap

A solution to Leetcode 71. Simplify Path

Mar 14, 20224 min read 30 views

Problem statement Given a string path, which is an absolute path (starting with a slash '/') to a file or directory in a Unix-style file system,...

A solution to Leetcode 71. Simplify Path

A Solution to Leetcode 82. Remove Duplicates from Sorted List II

Mar 9, 20222 min read 16 views

Problem statement Given the head of a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the...

A Solution to Leetcode 82. Remove Duplicates from Sorted List II

C++ Solution to Leetcode 133. Clone Graph

Feb 10, 20224 min read 51 views

Problem statement Given a reference of a node in a connected undirected graph. Return a deep copy (clone) of the graph. Each node in the graph...

C++ Solution to Leetcode 133. Clone Graph

C++ Solution to Leetcode 402. Remove K Digits

Feb 10, 20223 min read 67 views

Problem statement Given string num representing a non-negative integer num, and an integer k, return the smallest possible integer after removing k...

C++ Solution to Leetcode 402. Remove K Digits