当前位置:   article > 正文

Golang | Leetcode Golang题解之第169题多数元素

Golang | Leetcode Golang题解之第169题多数元素

题目:

题解:

  1. func majorityElement(nums []int) (ans int) {
  2. cnts := 0
  3. for _, v := range nums {
  4. if v == ans {
  5. cnts++
  6. } else if cnts == 0 {
  7. ans = v
  8. } else {
  9. cnts--
  10. }
  11. }
  12. return
  13. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/926510
推荐阅读
相关标签
  

闽ICP备14008679号