Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add swift implementation to lcof problem: No.13 #2865

Merged
merged 2 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions lcof/面试题13. 机器人的运动范围/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,43 @@ public class Solution {
}
```

#### Swift

```swift
class Solution {
private var vis: [[Bool]] = []
private var m: Int = 0
private var n: Int = 0
private var k: Int = 0

func movingCount(_ m: Int, _ n: Int, _ k: Int) -> Int {
self.m = m
self.n = n
self.k = k
self.vis = Array(repeating: Array(repeating: false, count: n), count: m)
return dfs(0, 0)
}

private func dfs(_ i: Int, _ j: Int) -> Int {
if i >= m || j >= n || vis[i][j] || (digitSum(i) + digitSum(j)) > k {
return 0
}
vis[i][j] = true
return 1 + dfs(i + 1, j) + dfs(i, j + 1)
}

private func digitSum(_ num: Int) -> Int {
var num = num
var sum = 0
while num > 0 {
sum += num % 10
num /= 10
}
return sum
}
}
```

<!-- tabs:end -->

<!-- solution:end -->
Expand Down
32 changes: 32 additions & 0 deletions lcof/面试题13. 机器人的运动范围/Solution.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
class Solution {
private var vis: [[Bool]] = []
private var m: Int = 0
private var n: Int = 0
private var k: Int = 0

func movingCount(_ m: Int, _ n: Int, _ k: Int) -> Int {
self.m = m
self.n = n
self.k = k
self.vis = Array(repeating: Array(repeating: false, count: n), count: m)
return dfs(0, 0)
}

private func dfs(_ i: Int, _ j: Int) -> Int {
if i >= m || j >= n || vis[i][j] || (digitSum(i) + digitSum(j)) > k {
return 0
}
vis[i][j] = true
return 1 + dfs(i + 1, j) + dfs(i, j + 1)
}

private func digitSum(_ num: Int) -> Int {
var num = num
var sum = 0
while num > 0 {
sum += num % 10
num /= 10
}
return sum
}
}
Loading