Skip to content

Instantly share code, notes, and snippets.

Created October 1, 2017 03:19
public class Solution {
public int fibonacci(int n) {
if (n < 2) {
return n;
}
int[] dp = new int[n + 1];
dp[0] = 0;
dp[1] = 1;
for (int i = 2; i <= n; i++) {
dp[i] = dp[i - 1] + dp[i - 2];
}
return dp[n];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment