4981.ListImplementation 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package 4981.ListImplementation --version 1.0.0                
NuGet\Install-Package 4981.ListImplementation -Version 1.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="4981.ListImplementation" Version="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add 4981.ListImplementation --version 1.0.0                
#r "nuget: 4981.ListImplementation, 1.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install 4981.ListImplementation as a Cake Addin
#addin nuget:?package=4981.ListImplementation&version=1.0.0

// Install 4981.ListImplementation as a Cake Tool
#tool nuget:?package=4981.ListImplementation&version=1.0.0                

Julio Guerrero - 1114981

Kata 21: Simple Lists

How to use:

Create a new object SimpleListService. (ex; var service = new SimpleListService();

To use the Single Link List:

object.Add_S (string input)------Will add another node with the input value at the end of the string.

object.Delete_S (string input)----Will delete the first node it finds with the content of the input.

object.Find_S (string input)-------Will find the first node that contains the content of the input.

object.Display_S-------------------Will display the entire list as an array of strings.

To use the Double Link List: (Same perceived functionality as the Single Link list on its functions)

object.Add_D (string input)

object.Delete_D (string input)

object.Find_D (string input)

object.Display_D

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.0 96 7/11/2024
1.1.0 84 7/11/2024
1.0.0 89 7/10/2024