翻译给定一个有 n 个数字的数组 S,在 S 中是否存在元素 a,b,c 和 d 的和恰好满足 a + b + c + d = target。找出数组中所有的不想等的这四个元素,其和等于 target。备注:在(a,b,c,d)中的元素必须从小到大排列。(a ≤ b ≤ c ≤ d)其结果必须不能够重复。例如,给定 S = {1 0 -1 0 -2 2},target = 0。
翻译给定一个字符串 S,找出它的最大回文子字符串。你可以假定 S 的最大长度为 1000,并且这里存在唯一一个最大回文子字符串。 原文Given a string S, find the longest palindromic substring in S.You may assume that the maximum length of S is 1000,and there exists one unique longest palindromic substring.