Skip to content

Commit a200784

Browse files
authored
791 - Custom Sort String.md
1 parent aa0ecaf commit a200784

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dsa-solutions/lc-solutions/0700-0799/791 - Custom Sort String.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,12 @@ Output: "bcad"
3636

3737
### Constraints
3838

39-
- 1 <= `order.length` <= 26
40-
- 1 <= `s.length` <= 200
39+
- 1 &lt;= `order.length` &lt;= 26
40+
- 1 &lt;= `s.length` &lt;= 200
4141
- `order` and `s` consist of lowercase English letters.
4242
- All the characters in `order` are unique.
4343

44+
4445
## Solution
4546

4647
### Intuition

0 commit comments

Comments
 (0)