Javascript - Linked Lists August 16, 2023 less than 1 minute read Linked List Linear data structure Elements are not stored in a memory locaion Each element has a value and pointer links to the next object in a list Share on Twitter Facebook LinkedIn Previous Next Leave a comment
Leetcode problem 136 - Final Prices With a Special Discount in a Shop March 5, 2024 1 minute read You are given an integer array prices where prices[i] is the price of the ith item in a shop.
Leetcode problem 135 - N-ary Tree Postorder Traversal March 4, 2024 less than 1 minute read Given the root of an n-ary tree, return the postorder traversal of its nodes’ values.
Leetcode problem 134 - Increasing Order Search Tree March 3, 2024 less than 1 minute read Given the root of a binary search tree, rearrange the tree in in-order so that the leftmost node in the tree is now the root of the tree, and every node has ...
Leetcode problem 134 - Maximum Nesting Depth of the Parentheses March 2, 2024 1 minute read A string is a valid parentheses string (denoted VPS) if it meets one of the following:
Leave a comment