dekawaiipotato Official Claim This Profile

VRChat

(0 reviews) 7 views 0
Share / Embed
Paste in Discord or Slack for an automatic preview card.
Paste into your website HTML to show an interactive card.
Use in Markdown: ![](url) — or paste the URL directly in forums that support images.
About This Player
template ≺typename T≻
concept Integral = std˸˸is_integral_v≺T≻;template ≺Integral T≻
std˸˸vector≺T≻ generateFibonacci(int n) {
if (n ≺= 0) return {};
if (n == 1) return {0};

std˸˸vector≺T≻ fib = {0‚ 1};
fib.reserve(n);

for (int i = 2; i ≺ n; ++i) {
fib.push_back(fib[i-1] + fib[i-2]);


return fib;


My love for you grows like the Fibonacci sequence - it's the sum of all that came before‚ and it's exponentially increasingǃ ;)
View on VRChat: VRChat.com

Reviews

No Reviews Yet

Be the first to review this player!

Log in to Write a Review
Listed on January 26, 2026 | Last updated January 26, 2026