Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
leetcode: finished #2716
Browse files Browse the repository at this point in the history
  • Loading branch information
xqm32 committed Jul 19, 2023
1 parent 77fed82 commit b7dca83
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions content/leetcode/2023/7.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@ title: "2023.7"
draft: false
---

# 2023.7.19

```python
#
# @lc app=leetcode.cn id=2716 lang=python3
#
# [2716] 最小化字符串长度
#


# @lc code=start
class Solution:
def minimizedStringLength(self, s: str) -> int:
return len(set(s))


# @lc code=end
```

# 2023.7.18

```python
Expand Down

0 comments on commit b7dca83

Please sign in to comment.