Kotlin Leetcode - 2798. Number of Employees Who Met the Target
題目連接:https://leetcode.com/problems/number-of-employees-who-met-the-target/
class Solution {
fun numberOfEmployeesWhoMetTarget(hours: IntArray, target: Int) {
}
}
解題思路
這題考的是陣列內元素的處理
我們要找到陣列內元素大於 target
的元素個數
利用 Kotlin Collection 的 count
我們可以很簡單的算出問題的解答
Kotlin 參考解答
利用 Kotlin Collection 的 count
我們可以這樣寫
class Solution {
fun numberOfEmployeesWhoMetTarget(hours: IntArray, target: Int) = hours.count { it >= target }
}
- 回到 leetcode 列表
- 回到 Grind 75 列表