DSA Sheet

Serialize and Deserialize a Binary Tree

Given the root of a binary tree, create two functions: serialize(root) - Converts the binary tree into a string representation.…

1 month ago

Square Root of Integer

Given an integer A. Compute and return the square root of A. If A is not a perfect square, return…

1 year ago

Build Array From Permutation

Given a zero-based permutation nums (0-indexed), build an array ans of the same length where ans[i] = nums[nums[i]] for each…

1 year ago