Skip to content

Instantly share code, notes, and snippets.

@ssartell

ssartell/5.cs Secret

Created August 23, 2016 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssartell/0deee2caba79dc9021f9dab07145b3f5 to your computer and use it in GitHub Desktop.
Save ssartell/0deee2caba79dc9021f9dab07145b3f5 to your computer and use it in GitHub Desktop.
/* LINQ Puzzle #5 *******************************************************
Description: Generate the first n digits of the Fibonacci Series!
Sample Input: n = 9;
Sample Output: {0, 1, 1, 2, 3, 5, 8, 13, 21};
************************************************************************/
// Given:
var n = 4;
// Your solution goes here:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment