leetcode: 字符串
Posted strong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode: 字符串相关的知识,希望对你有一定的参考价值。
1. palindrome-partitioning
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all possible palindrome partitioning of s.
For example, given s ="aab",
Return
[ ["aa","b"], ["a","a","b"] ]
给定一个字符串,将字符串分成多个部分,满足每一部分都是回文串,请输出所有可能的情况
以上是关于leetcode: 字符串的主要内容,如果未能解决你的问题,请参考以下文章
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段
Leetcode刷题Python LeetCode 2038. 如果相邻两个颜色均相同则删除当前颜色
LeetCode810. 黑板异或游戏/455. 分发饼干/剑指Offer 53 - I. 在排序数组中查找数字 I/53 - II. 0~n-1中缺失的数字/54. 二叉搜索树的第k大节点(代码片段