Skip to content

Instantly share code, notes, and snippets.

View mang0kitty's full-sized avatar
🦄

Aideen Fay mang0kitty

🦄
View GitHub Profile
@mang0kitty
mang0kitty / Fibonacci.java
Last active August 20, 2019 13:53 — forked from meghakrishnamurthy/Fibonacci.java
Fibonacci - Recursive and Iterative implementation in Java
package megha.codingproblems.general;
/**
* Fibonacci program - Both iterative and recursive versions
* Fibonacci series - 1,1,2,3,5,8,13....
*
* @author megha krishnamurthy
*
*/
public class Fibonacci {