Search found 1 match

by konkor
Thu Jun 21, 2018 11:54 pm
Forum: Challenges Solved
Topic: Growing Bacteria
Replies: 24
Views: 2863

The first post so far, hope it would be in a good place here! Thanks! Feel free to comment on my solution, I am just a student yet. :)) import java.math.BigInteger; public class Bacteria { // Returns n-th Fibonacci number static BigInteger fib( int n ) { BigInteger a = BigInteger.valueOf( 0 ); BigIn...