
What I propose is to get back to CS 101 basics with a small
twist. Over the next few weeks, I will be posting a series of programming
challenges. Here are the rules:
- Use any programming language that you want.
- Perform the task as instructed in AS FEW lines of code as possible.
- Brackets, comments, whitespace and display code don’t count toward line count.
- Minification will hurt you.
- Post your code in the comments.
The Fibonacci Sequence
Anyone who has been in a programming class knows of this algorithm.
Each number in the sequence is the sum of the previous two numbers. E.g.
1,1,2,3,5,8,13,21…
What you have to do for this first challenge is generate an
array that contains the first 20 iterations of the Fibonacci Sequence.
Here is my submission in PHP: 4 lines according to the
rules.
<?php
$seq = array();
$last = 0;
for ($i = 0; $i <= 19; $i++) {
$i == 0 || $i == 1 ? $last = $seq[] = 1 : $last = $seq[] = $seq[$i - 1] + $seq[$i - 2];
}
print_r($seq);
Good Luck!
Here is my 4 line PHP attempt:
ReplyDelete$stack = array($last=1, $current=1);
while(count($stack) < 20){
array_push($stack, ($current += $last));
$last = $current - $last;
}print_r($stack);
for ($x=1; $x<=20; $x++) {
ReplyDelete$fibArray[$x] = $x <= 1 ? $x : $fibArray[$x-2] + $fibArray[$x-1];
}
print_r($fibArray);
2 LINES!?
DeleteDoes this count as 1?
ReplyDeletefor ($x=1, $fibArray = array(0,1); $x<=20; $fibArray[$x] = ($x <= 1 ? $x : $fibArray[$x-2] + $fibArray[$x-1]), $x++){}
print_r($fibArray);
This comment has been removed by the author.
Deleteit prints one to many times ;)
DeletePerbaikan sistem pada sebuah game sangatlah penting, karena Maintenance Rutin Poker Online akan mempengaruhi baik dan buruk nya sistem permainan tersebut. Contoh saja pada permainan poker online di s1288poker, selalu memiliki jadwal rutin untuk maintenance disetiap minggu nya (Baca Selengkapnya...)
ReplyDelete