Created
March 7, 2018 10:40
-
-
Save ThatRendle/cc253373a8d634a5c49114207e4a9d26 to your computer and use it in GitHub Desktop.
Lines of code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class Squares | |
{ | |
public static int Square(int i) => i * i; | |
public static int SumOfSquares(int i) => Enumerable.Range(1, i).Select(Square).Sum(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment