README ¶ 判定是否互为字符重排 给定两个字符串 s1 和 s2,请编写一个程序,确定其中一个字符串的字符重新排列后,能否变成另一个字符串。 示例 1: 输入: s1 = "abc", s2 = "bca" 输出: true 示例 2: 输入: s1 = "abc", s2 = "bad" 输出: false 说明: 0 <= len(s1) <= 100 0 <= len(s2) <= 100 Expand ▾ Collapse ▴ Documentation ¶ Index ¶ func CheckPermutation(s1 string, s2 string) bool Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ func CheckPermutation ¶ func CheckPermutation(s1 string, s2 string) bool Types ¶ This section is empty. Source Files ¶ View all Source files check-permutation-lcci.go Click to show internal directories. Click to hide internal directories.