Quotes help make search much faster. Example: "Practice Makes Perfect"

Tuesday, September 3, 2019

Codecademy Lambda Expressions 4/6


// Sample Solution
using System;

namespace AlternateExpressions
{
  class Program
  {
    static void Main(string[] args)
    {
      string[] spaceRocks = {"meteoroid", "meteor", "meteorite"};
     
      bool makesContact = Array.Exists(spaceRocks, (string s) => s == "meteorite");
     
      if (makesContact)
      {
        Console.WriteLine("At least one space rock has reached the Earth's surface!");
      }
    }
  }
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts