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

Commit

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

# 2023.8.3

```python
#
# @lc app=leetcode.cn id=319 lang=python3
#
# [319] 灯泡开关
#


# @lc code=start
class Solution:
def bulbSwitch(self, n: int) -> int:
return int(n**0.5)


# @lc code=end
```

# 2023.8.2

```python
Expand Down

0 comments on commit 3c673f8

Please sign in to comment.