leetcode/include/s0509_fibonacci_number.hpp

14 lines
164 B
C++
Raw Normal View History

2023-02-08 04:20:07 +00:00
#ifndef S0509_FIBONACCI_NUMBER_HPP
#define S0509_FIBONACCI_NUMBER_HPP
#include <vector>
using namespace std;
class S0509 {
public:
int fib(int n);
};
#endif