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
namespace MonkeyMoveBanana | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int left = CalculateMaxBananaLeft(50, 100, 50, 1); | |
Console.WriteLine(left); | |
Console.ReadKey(); | |
} |
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
namespace AmazingString | |
{ | |
class Program | |
{ | |
private static Random random = new Random(); | |
static void Main(string[] args) | |
{ | |
string sentence = "Covariant and contravariant generic type parameters provide greater flexibility in assigning and using generic types"; |