4981.ListImplementation
1.0.0
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
<PackageReference Include="4981.ListImplementation" Version="1.0.0" />
paket add 4981.ListImplementation --version 1.0.0
#r "nuget: 4981.ListImplementation, 1.0.0"
// 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 | Versions 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. |
-
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.