摘要: You are playing a game involving a circular array of non-zero integers nums. Each nums[i] denotes the number of indices forward/backward you must move 阅读全文
posted @ 2021-08-08 15:18 CNoodle 阅读(145) 评论(0) 推荐(0)
摘要: The Tribonacci sequence Tn is defined as follows: T0 = 0, T1 = 1, T2 = 1, and Tn+3 = Tn + Tn+1 + Tn+2 for n >= 0. Given n, return the value of Tn. Exa 阅读全文
posted @ 2021-08-08 12:57 CNoodle 阅读(162) 评论(0) 推荐(0)