1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 15:31:43 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -1,8 +1,8 @@
<p>给定两个字符串 <code>order</code><code>s</code><code>order</code> 的所有单词都是 <strong>唯一</strong> 的,并且以前按照一些自定义的顺序排序。</p>
<p>给定两个字符串 <code>order</code><code>s</code><code>order</code> 的所有字母都是 <strong>唯一</strong> 的,并且以前按照一些自定义的顺序排序。</p>
<p><code>s</code> 的字符进行置换,使其与排序的&nbsp;<code>order</code>&nbsp;相匹配。更具体地说,如果在&nbsp;<code>order</code>&nbsp;中的字符 <code>x</code> 出现字符 <code>y</code> 之前,那么在排列后的字符串中, <code>x</code>&nbsp;也应该出现在 <code>y</code> 之前。</p>
<p>返回 <em>满足这个性质的 <code>s</code> 的任意排列&nbsp;</em></p>
<p>返回 <em>满足这个性质的 <code>s</code> 的任意一种排列&nbsp;</em></p>
<p>&nbsp;</p>