Coder Social home page Coder Social logo

Comments (1)

leahhoefling avatar leahhoefling commented on August 12, 2024

Kill Nickelback

In this exercise, you're going to use Dictionaries, LINQ, and Lists.

Setup

mkdir -p ~/workspace/csharp/exercises/nickelback && cd $_
dotnet new console
dotnet restore

Instructions

  1. Define a list of dictionaries.
  2. Each dictionary will have a key of type string, and a value of type string.
  3. Assign the list to a goodSongs variable.
  4. Define a List of Dictionaries, named allSongs, that contains 7 dictionaries.
  5. Each dictionary in the list will have a key of type string, and a value of type string.
  6. The key will be the name of an artist.
  7. The value will be the name of a song by that artist. Make sure that some of the songs are from the band Nickelback. You can see a list of their greatest hits on Amazon.
    // Example
    List<Dictionary<string, string>> allSongs = new List<Dictionary<string, string>>();
  8. Once the set is populated with 7 dictionaries, use LINQ to check if the band name is "Nickelback".
  9. If the band is not Nickelback, then add it to the goodSongs list.
  10. Uee another foreach loop to print out all the good songs.

from bangazon-inc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.