Chào các bạn. Câu hỏi hôm nay như sau: Problem Given a list of integers, write a function that returns the largest sum of non-adjacent numbers. Numbers can be 0 or negative. For example, [2, 4, 6, 2, 5] should return 13, since we pick 2, 6, and 5. [5, 1, 1, 5] should return 10, since we pick 5 and 5. Follow-up: Can you do this in O(N) time and constant space?

Đọc tiếp...

Chào các bạn. Câu hỏi hôm nay như sau: Problem A unival tree (which stands for “universal value”) is a tree where all nodes under it have the same value. Given the root to a binary tree, count the number of unival subtrees. For example, the following tree has 5 unival subtrees: 0 / \ 1 0 / \ 1 0 / \ 1 1 Code implementation private static int getUnivalCount(TreeNode node){ if (node == null)return 0; int count = getUnivalCount(node.

Đọc tiếp...

Chào các bạn. Câu hỏi hôm nay như sau: Problem This problem was asked by Facebook. Given the mapping a = 1, b = 2, … z = 26, and an encoded message, count the number of ways it can be decoded. For example, the message ‘111’ would give 3, since it could be decoded as ‘aaa’, ‘ka’, and ‘ak’. You can assume that the messages are decodable. For example, ‘001’ is not allowed.

Đọc tiếp...

Chào các bạn. Câu hỏi hôm nay như sau: Problem This problem was asked by Google. An XOR linked list is a more memory efficient doubly linked list. Instead of each node holding next and prev fields, it holds a field named both, which is an XOR of the next node and the previous node. Implement an XOR linked list; it has an add(element) which adds the element to the end, and a get(index) which returns the node at index.

Đọc tiếp...

Chào các bạn. Câu hỏi hôm nay như sau: Problem Given an array of integers, find the first missing positive integer in linear time and constant space. In other words, find the lowest positive integer that does not exist in the array. The array can contain duplicates and negative numbers as well. For example, the input [3, 4, -1, 1] should give 2. The input [1, 2, 0] should give 3.

Đọc tiếp...

Chào các bạn. Câu hỏi hôm nay là về kiểu cấu trúc dữ liệu dạng cây: Problem Given the root to a binary tree, implement serialize(root), which serializes the tree into a string, and deserialize(s), which deserializes the string back into the tree. For example, given the following Node class class Node: def __init__(self, val, left=None, right=None): self.val = val self.left = left self.right = right The following test should pass:

Đọc tiếp...

Chào các bạn. Ngày hôm nay chúng ta sẽ xem xét một câu hỏi của Uber: Problem Given an array of integers, return a new array such that each element at index i of the new array is the product of all the numbers in the original array except the one at i. For example, if our input was [1, 2, 3, 4, 5], the expected output would be [120, 60, 40, 30, 24].

Đọc tiếp...

Ảnh đại diện

Tu Bean

Coding, writing and sharing

Web developer

Viet Nam