leetcode 1137-n-th-tribonacci-number | 第 N 个泰波那契数 发表于 2020-12-05 更新于 2022-04-27 分类于 LeetCode-Solutions 阅读次数: 本文字数: 278 阅读时长 ≈ 1 分钟 题目链接https://leetcode-cn.com/problems/n-th-tribonacci-number/ 题目解析Golang12345678910111213141516171819func tribonacci(n int) int { if n < 3 { if n == 0 { return 0 } else { return 1 } } tmp,x,y,z := 0,0,1,1 for i := 3;i <= n;i++ { tmp = x + y + z x = y y = z z = tmp } return z} ------ 本文结束------ 如果本篇文章对你有帮助,可以给作者加个鸡腿~(*^__^*),感谢鼓励与支持! 打赏 微信支付 支付宝 本文作者: Neo Zhang 本文链接: https://octopuslian.github.io/2020/12/05/leetcode-1137-n-th-tribonacci-number/ 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!