19. Remove Nth Node From End of List
题目
Given the head of a linked list, remove the nth node from the end of the list and return its head.
Follow up: Could you do this in one pass?
Example 1: Input: head = [1,2,3,4,5], n = 2
Output: [1,2,3,5]Example…
原题链接:F. Sonya and Bitwise OR 题目大意: 给出一个长度为 n n n 的数组 a a a,并给出 m m m 次询问以及一个数字 x x x。
每个询问形式如下给出: 1 1 1 i i i y y y :将 a i a_{i} ai 位置的值更改为 y…