Skip to content

Instantly share code, notes, and snippets.

@Dariush-Tasdighi
Created May 24, 2020 09:35
Show Gist options
  • Save Dariush-Tasdighi/b53608b053ffad164d792d4d8b5b1c64 to your computer and use it in GitHub Desktop.
Save Dariush-Tasdighi/b53608b053ffad164d792d4d8b5b1c64 to your computer and use it in GitHub Desktop.
Level 01 - Answer 01
namespace Level_01
{
public static class Question_01
{
public static int Sum(int a, int b)
{
// Solution (1)
//return a + b;
// Solution (2)
int sum = a + b;
return sum;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment