├── .gitignore ├── .vscode └── settings.json ├── Applications ├── Console │ ├── .gitignore │ ├── ArrayApplications.cs │ ├── BSTApplication.cs │ ├── Console.csproj │ ├── DoublyLinkedListApplication.cs │ ├── LinkedListApplications.cs │ ├── Program.cs │ ├── StackApplications.cs │ ├── bin │ │ └── Debug │ │ │ └── net8.0 │ │ │ ├── Array.dll │ │ │ ├── Console.deps.json │ │ │ ├── Console.dll │ │ │ ├── Console.exe │ │ │ ├── Console.runtimeconfig.json │ │ │ ├── LinkedList.dll │ │ │ └── Stack.dll │ └── obj │ │ ├── Console.csproj.nuget.dgspec.json │ │ ├── Console.csproj.nuget.g.props │ │ ├── Console.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── Console.AssemblyInfo.cs │ │ │ ├── Console.AssemblyInfoInputs.cache │ │ │ ├── Console.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Console.GlobalUsings.g.cs │ │ │ ├── Console.assets.cache │ │ │ ├── Console.csproj.AssemblyReference.cache │ │ │ ├── Console.csproj.CoreCompileInputs.cache │ │ │ ├── Console.csproj.FileListAbsolute.txt │ │ │ ├── Console.csproj.Up2Date │ │ │ ├── Console.dll │ │ │ ├── Console.genruntimeconfig.cache │ │ │ ├── Console.sourcelink.json │ │ │ ├── apphost.exe │ │ │ ├── ref │ │ │ └── Console.dll │ │ │ └── refint │ │ │ └── Console.dll │ │ ├── project.assets.json │ │ └── project.nuget.cache └── Web │ ├── App.db │ ├── Controllers │ ├── HomeController.cs │ └── StaticArrayController.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Repositories │ └── RepositoryContext.cs │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── StaticArray │ │ ├── Car.cshtml │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Web.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Array.dll │ │ ├── Entities.dll │ │ ├── Humanizer.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.Data.Sqlite.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Mono.TextTemplating.dll │ │ ├── SQLitePCLRaw.batteries_v2.dll │ │ ├── SQLitePCLRaw.core.dll │ │ ├── SQLitePCLRaw.provider.e_sqlite3.dll │ │ ├── System.CodeDom.dll │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.dll │ │ ├── Web.deps.json │ │ ├── Web.dll │ │ ├── Web.exe │ │ ├── Web.runtimeconfig.json │ │ ├── Web.staticwebassets.runtime.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── de │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── es │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── fr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── it │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ja │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ko │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pl │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── runtimes │ │ ├── browser-wasm │ │ │ └── nativeassets │ │ │ │ └── net8.0 │ │ │ │ └── e_sqlite3.a │ │ ├── linux-arm │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-arm64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-armel │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-mips64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-musl-arm │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-musl-arm64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-musl-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-ppc64le │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-s390x │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-x86 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── maccatalyst-arm64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.dylib │ │ ├── maccatalyst-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.dylib │ │ ├── osx-arm64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.dylib │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.dylib │ │ ├── win-arm │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ └── win-x86 │ │ │ └── native │ │ │ └── e_sqlite3.dll │ │ ├── tr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ ├── obj │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── Web.AssemblyInfo.cs │ │ │ ├── Web.AssemblyInfoInputs.cache │ │ │ ├── Web.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Web.GlobalUsings.g.cs │ │ │ ├── Web.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── Web.RazorAssemblyInfo.cache │ │ │ ├── Web.RazorAssemblyInfo.cs │ │ │ ├── Web.assets.cache │ │ │ ├── Web.csproj.AssemblyReference.cache │ │ │ ├── Web.csproj.CoreCompileInputs.cache │ │ │ ├── Web.csproj.FileListAbsolute.txt │ │ │ ├── Web.csproj.Up2Date │ │ │ ├── Web.dll │ │ │ ├── Web.genruntimeconfig.cache │ │ │ ├── Web.sourcelink.json │ │ │ ├── apphost.exe │ │ │ ├── project.razor.vscode.bin │ │ │ ├── ref │ │ │ └── Web.dll │ │ │ ├── refint │ │ │ └── Web.dll │ │ │ ├── scopedcss │ │ │ ├── Views │ │ │ │ └── Shared │ │ │ │ │ └── _Layout.cshtml.rz.scp.css │ │ │ ├── bundle │ │ │ │ └── Web.styles.css │ │ │ └── projectbundle │ │ │ │ └── Web.bundle.scp.css │ │ │ ├── staticwebassets.build.json │ │ │ ├── staticwebassets.development.json │ │ │ ├── staticwebassets.pack.json │ │ │ └── staticwebassets │ │ │ ├── msbuild.Web.Microsoft.AspNetCore.StaticWebAssets.props │ │ │ ├── msbuild.build.Web.props │ │ │ ├── msbuild.buildMultiTargeting.Web.props │ │ │ └── msbuild.buildTransitive.Web.props │ ├── Web.csproj.nuget.dgspec.json │ ├── Web.csproj.nuget.g.props │ ├── Web.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── DataStructures ├── Array │ ├── .gitignore │ ├── Array.cs │ ├── Array.csproj │ ├── Contracts │ │ ├── IArray.cs │ │ └── IDynamicArray.cs │ ├── Model │ │ └── StaticArray.wsd │ ├── StaticArray.cs │ ├── bin │ │ └── Debug │ │ │ └── net8.0 │ │ │ ├── Array.deps.json │ │ │ └── Array.dll │ └── obj │ │ ├── Array.csproj.nuget.dgspec.json │ │ ├── Array.csproj.nuget.g.props │ │ ├── Array.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── Array.AssemblyInfo.cs │ │ │ ├── Array.AssemblyInfoInputs.cache │ │ │ ├── Array.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Array.GlobalUsings.g.cs │ │ │ ├── Array.assets.cache │ │ │ ├── Array.csproj.CoreCompileInputs.cache │ │ │ ├── Array.csproj.FileListAbsolute.txt │ │ │ ├── Array.dll │ │ │ ├── Array.sourcelink.json │ │ │ ├── ref │ │ │ └── Array.dll │ │ │ └── refint │ │ │ └── Array.dll │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── DataStructures.sln ├── DisjointSet │ ├── DisjointSet.cs │ ├── DisjointSet.csproj │ ├── DisjointSetNode.cs │ ├── bin │ │ └── Debug │ │ │ └── net8.0 │ │ │ ├── DisjointSet.deps.json │ │ │ └── DisjointSet.dll │ └── obj │ │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── DisjointSet.AssemblyInfo.cs │ │ │ ├── DisjointSet.AssemblyInfoInputs.cache │ │ │ ├── DisjointSet.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── DisjointSet.GlobalUsings.g.cs │ │ │ ├── DisjointSet.assets.cache │ │ │ ├── DisjointSet.csproj.CoreCompileInputs.cache │ │ │ ├── DisjointSet.csproj.FileListAbsolute.txt │ │ │ ├── DisjointSet.dll │ │ │ ├── DisjointSet.sourcelink.json │ │ │ ├── ref │ │ │ └── DisjointSet.dll │ │ │ └── refint │ │ │ └── DisjointSet.dll │ │ ├── DisjointSet.csproj.nuget.dgspec.json │ │ ├── DisjointSet.csproj.nuget.g.props │ │ ├── DisjointSet.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── LinkedList │ ├── .gitignore │ ├── Contracts │ │ ├── IDoublyLinkedList.cs │ │ └── ISinglyLinkedList.cs │ ├── Doubly │ │ ├── DbNode.cs │ │ ├── DoublyLinkedList.cs │ │ └── DoublyLinkedListEnumerator.cs │ ├── LinkedList.csproj │ ├── Models │ │ ├── DoublyLinkedListModel.wsd │ │ └── SinglyLinkedListModel.wsd │ ├── Singly │ │ ├── SinglyLinkedList.cs │ │ ├── SinglyLinkedListEnumerator.cs │ │ └── SinglyLinkedListNode.cs │ ├── bin │ │ └── Debug │ │ │ └── net8.0 │ │ │ ├── LinkedList.deps.json │ │ │ └── LinkedList.dll │ └── obj │ │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── LinkedList.AssemblyInfo.cs │ │ │ ├── LinkedList.AssemblyInfoInputs.cache │ │ │ ├── LinkedList.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── LinkedList.GlobalUsings.g.cs │ │ │ ├── LinkedList.assets.cache │ │ │ ├── LinkedList.csproj.CoreCompileInputs.cache │ │ │ ├── LinkedList.csproj.FileListAbsolute.txt │ │ │ ├── LinkedList.dll │ │ │ ├── LinkedList.sourcelink.json │ │ │ ├── ref │ │ │ └── LinkedList.dll │ │ │ └── refint │ │ │ └── LinkedList.dll │ │ ├── LinkedList.csproj.nuget.dgspec.json │ │ ├── LinkedList.csproj.nuget.g.props │ │ ├── LinkedList.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── PriorityQueue │ ├── .gitignore │ ├── BHeap.cs │ ├── BinaryHeap.cs │ ├── MaxHeap.cs │ ├── MinHeap.cs │ ├── Model │ │ └── PriorityQueue.wsd │ └── PriorityQueue.csproj ├── Queue │ ├── .gitignore │ ├── ArrayQueue.cs │ ├── Contracts │ │ └── IQueue.cs │ ├── LinkedListQueue.cs │ ├── Queue.cs │ └── Queue.csproj ├── Stack │ ├── .gitignore │ ├── ArrayStack.cs │ ├── Contracts │ │ └── IStack.cs │ ├── LinkedListStack.cs │ ├── Model │ │ └── StackModel.wsd │ ├── Stack.cs │ └── Stack.csproj └── Trees │ ├── .gitignore │ ├── AVL │ ├── AVLTree.cs │ ├── AVLTreeNode.cs │ └── Models │ │ └── AVLModel.wsd │ ├── BinarySearchTree │ └── BST.cs │ ├── BinaryTree │ ├── BinaryTree.cs │ └── Node.cs │ └── Trees.csproj ├── Drawings ├── .$Drawings.drawio.bkp └── Drawings.drawio ├── Libs ├── Entities │ ├── Car.cs │ ├── Engine.cs │ ├── Entities.csproj │ ├── bin │ │ └── Debug │ │ │ └── net8.0 │ │ │ ├── Entities.deps.json │ │ │ └── Entities.dll │ └── obj │ │ ├── Debug │ │ └── net8.0 │ │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ │ ├── Entities.AssemblyInfo.cs │ │ │ ├── Entities.AssemblyInfoInputs.cache │ │ │ ├── Entities.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Entities.GlobalUsings.g.cs │ │ │ ├── Entities.assets.cache │ │ │ ├── Entities.csproj.CoreCompileInputs.cache │ │ │ ├── Entities.csproj.FileListAbsolute.txt │ │ │ ├── Entities.dll │ │ │ ├── Entities.sourcelink.json │ │ │ ├── ref │ │ │ └── Entities.dll │ │ │ └── refint │ │ │ └── Entities.dll │ │ ├── Entities.csproj.nuget.dgspec.json │ │ ├── Entities.csproj.nuget.g.props │ │ ├── Entities.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache └── Maths │ ├── Maths.csproj │ ├── Number.cs │ ├── Series.cs │ ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Maths.deps.json │ │ └── Maths.dll │ └── obj │ ├── Debug │ ├── net7.0 │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ ├── Maths.AssemblyInfo.cs │ │ ├── Maths.AssemblyInfoInputs.cache │ │ ├── Maths.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Maths.GlobalUsings.g.cs │ │ ├── Maths.assets.cache │ │ ├── Maths.csproj.BuildWithSkipAnalyzers │ │ ├── Maths.csproj.CoreCompileInputs.cache │ │ ├── Maths.csproj.FileListAbsolute.txt │ │ ├── Maths.dll │ │ ├── ref │ │ │ └── Maths.dll │ │ └── refint │ │ │ └── Maths.dll │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Maths.AssemblyInfo.cs │ │ ├── Maths.AssemblyInfoInputs.cache │ │ ├── Maths.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Maths.GlobalUsings.g.cs │ │ ├── Maths.assets.cache │ │ ├── Maths.csproj.CoreCompileInputs.cache │ │ ├── Maths.csproj.FileListAbsolute.txt │ │ ├── Maths.dll │ │ ├── Maths.sourcelink.json │ │ ├── ref │ │ └── Maths.dll │ │ └── refint │ │ └── Maths.dll │ ├── Maths.csproj.nuget.dgspec.json │ ├── Maths.csproj.nuget.g.props │ ├── Maths.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── MYAZ204206.sln ├── Problems └── SinglyLinkedList.md ├── Readme.md ├── Shared ├── Utilities │ ├── .gitignore │ ├── CustomComparer.cs │ ├── SortDirection.cs │ └── Utilities.csproj └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Shared.AssemblyInfo.cs │ │ ├── Shared.AssemblyInfoInputs.cache │ │ ├── Shared.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Shared.GlobalUsings.g.cs │ │ └── Shared.assets.cache │ ├── Shared.csproj.nuget.dgspec.json │ ├── Shared.csproj.nuget.g.props │ ├── Shared.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── Tests ├── ArrayTest ├── .gitignore ├── ArrayTest.csproj ├── ArrayTests.cs ├── StaticArrayTest.cs ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── Array.dll │ │ ├── ArrayTest.deps.json │ │ ├── ArrayTest.dll │ │ ├── ArrayTest.runtimeconfig.json │ │ ├── CoverletSourceRootsMapping_ArrayTest │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── cs │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── de │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── es │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── fr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── it │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ja │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ko │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pl │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ru │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── testhost.dll │ │ ├── testhost.exe │ │ ├── tr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── xunit.abstractions.dll │ │ ├── xunit.assert.dll │ │ ├── xunit.core.dll │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ ├── zh-Hans │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll └── obj │ ├── ArrayTest.csproj.nuget.dgspec.json │ ├── ArrayTest.csproj.nuget.g.props │ ├── ArrayTest.csproj.nuget.g.targets │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── ArrayTest.AssemblyInfo.cs │ │ ├── ArrayTest.AssemblyInfoInputs.cache │ │ ├── ArrayTest.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ArrayTest.GlobalUsings.g.cs │ │ ├── ArrayTest.assets.cache │ │ ├── ArrayTest.csproj.AssemblyReference.cache │ │ ├── ArrayTest.csproj.CoreCompileInputs.cache │ │ ├── ArrayTest.csproj.FileListAbsolute.txt │ │ ├── ArrayTest.csproj.Up2Date │ │ ├── ArrayTest.dll │ │ ├── ArrayTest.genruntimeconfig.cache │ │ ├── ArrayTest.sourcelink.json │ │ ├── ref │ │ └── ArrayTest.dll │ │ └── refint │ │ └── ArrayTest.dll │ ├── project.assets.json │ └── project.nuget.cache ├── DisjointSetTests ├── DisjointSetNodeTests.cs ├── DisjointSetTests.cs ├── DisjointSetTests.csproj ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── CoverletSourceRootsMapping_DisjointSetTests │ │ ├── DisjointSet.dll │ │ ├── DisjointSetTests.deps.json │ │ ├── DisjointSetTests.dll │ │ ├── DisjointSetTests.runtimeconfig.json │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── cs │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── de │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── es │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── fr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── it │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ja │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ko │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pl │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ru │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── testhost.dll │ │ ├── testhost.exe │ │ ├── tr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── xunit.abstractions.dll │ │ ├── xunit.assert.dll │ │ ├── xunit.core.dll │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ ├── zh-Hans │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── Disjoint.55F0CD8A.Up2Date │ │ ├── DisjointSetTests.AssemblyInfo.cs │ │ ├── DisjointSetTests.AssemblyInfoInputs.cache │ │ ├── DisjointSetTests.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── DisjointSetTests.GlobalUsings.g.cs │ │ ├── DisjointSetTests.assets.cache │ │ ├── DisjointSetTests.csproj.AssemblyReference.cache │ │ ├── DisjointSetTests.csproj.CoreCompileInputs.cache │ │ ├── DisjointSetTests.csproj.FileListAbsolute.txt │ │ ├── DisjointSetTests.dll │ │ ├── DisjointSetTests.genruntimeconfig.cache │ │ ├── DisjointSetTests.sourcelink.json │ │ ├── ref │ │ └── DisjointSetTests.dll │ │ └── refint │ │ └── DisjointSetTests.dll │ ├── DisjointSetTests.csproj.nuget.dgspec.json │ ├── DisjointSetTests.csproj.nuget.g.props │ ├── DisjointSetTests.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── LinkedListTests ├── .gitignore ├── DoublyLinkedListEnumeratorTests.cs ├── DoublyLinkedListTests.cs ├── DoubyLinkedListNodeTests.cs ├── LinkedListTests.csproj ├── SinglyLinkedListEnumeratorTests.cs ├── SinglyLinkedListNodeTests.cs ├── SinglyLinkedListTests.cs ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── CoverletSourceRootsMapping_LinkedListTests │ │ ├── LinkedList.dll │ │ ├── LinkedListTests.deps.json │ │ ├── LinkedListTests.dll │ │ ├── LinkedListTests.runtimeconfig.json │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── cs │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── de │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── es │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── fr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── it │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ja │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ko │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pl │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ru │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── testhost.dll │ │ ├── testhost.exe │ │ ├── tr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── xunit.abstractions.dll │ │ ├── xunit.assert.dll │ │ ├── xunit.core.dll │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ ├── zh-Hans │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── LinkedLi.0CD4EB2F.Up2Date │ │ ├── LinkedListTests.AssemblyInfo.cs │ │ ├── LinkedListTests.AssemblyInfoInputs.cache │ │ ├── LinkedListTests.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── LinkedListTests.GlobalUsings.g.cs │ │ ├── LinkedListTests.assets.cache │ │ ├── LinkedListTests.csproj.AssemblyReference.cache │ │ ├── LinkedListTests.csproj.CoreCompileInputs.cache │ │ ├── LinkedListTests.csproj.FileListAbsolute.txt │ │ ├── LinkedListTests.dll │ │ ├── LinkedListTests.genruntimeconfig.cache │ │ ├── LinkedListTests.sourcelink.json │ │ ├── ref │ │ └── LinkedListTests.dll │ │ └── refint │ │ └── LinkedListTests.dll │ ├── LinkedListTests.csproj.nuget.dgspec.json │ ├── LinkedListTests.csproj.nuget.g.props │ ├── LinkedListTests.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── MathsTests ├── .gitignore ├── GlobalUsings.cs ├── MathsTests.csproj ├── NumberTests.cs ├── SeriesTests.cs ├── bin │ └── Debug │ │ └── net8.0 │ │ ├── CoverletSourceRootsMapping_MathsTests │ │ ├── Maths.dll │ │ ├── MathsTests.deps.json │ │ ├── MathsTests.dll │ │ ├── MathsTests.runtimeconfig.json │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── cs │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── de │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── es │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── fr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── it │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ja │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ko │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pl │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ru │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── testhost.dll │ │ ├── testhost.exe │ │ ├── tr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── xunit.abstractions.dll │ │ ├── xunit.assert.dll │ │ ├── xunit.core.dll │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.runner.reporters.netcoreapp10.dll │ │ ├── xunit.runner.utility.netcoreapp10.dll │ │ ├── xunit.runner.visualstudio.dotnetcore.testadapter.dll │ │ ├── zh-Hans │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll └── obj │ ├── Debug │ ├── net7.0 │ │ ├── .NETCoreApp,Version=v7.0.AssemblyAttributes.cs │ │ ├── MathsTests.AssemblyInfo.cs │ │ ├── MathsTests.AssemblyInfoInputs.cache │ │ ├── MathsTests.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── MathsTests.GlobalUsings.g.cs │ │ ├── MathsTests.assets.cache │ │ ├── MathsTests.csproj.AssemblyReference.cache │ │ ├── MathsTests.csproj.BuildWithSkipAnalyzers │ │ ├── MathsTests.csproj.CopyComplete │ │ ├── MathsTests.csproj.CoreCompileInputs.cache │ │ ├── MathsTests.csproj.FileListAbsolute.txt │ │ ├── MathsTests.dll │ │ ├── MathsTests.genruntimeconfig.cache │ │ ├── ref │ │ │ └── MathsTests.dll │ │ └── refint │ │ │ └── MathsTests.dll │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── MathsTests.AssemblyInfo.cs │ │ ├── MathsTests.AssemblyInfoInputs.cache │ │ ├── MathsTests.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── MathsTests.GlobalUsings.g.cs │ │ ├── MathsTests.assets.cache │ │ ├── MathsTests.csproj.AssemblyReference.cache │ │ ├── MathsTests.csproj.CoreCompileInputs.cache │ │ ├── MathsTests.csproj.FileListAbsolute.txt │ │ ├── MathsTests.csproj.Up2Date │ │ ├── MathsTests.dll │ │ ├── MathsTests.genruntimeconfig.cache │ │ ├── MathsTests.sourcelink.json │ │ ├── ref │ │ └── MathsTests.dll │ │ └── refint │ │ └── MathsTests.dll │ ├── MathsTests.csproj.nuget.dgspec.json │ ├── MathsTests.csproj.nuget.g.props │ ├── MathsTests.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── PriorityQueueTests ├── .gitignore ├── MaxHeapTests.cs ├── MinHeapTests.cs └── PriorityQueueTests.csproj ├── QueueTests ├── .gitignore ├── ArrayQueueTests.cs ├── LinkedListQueueTests.cs ├── QueueTests.csproj ├── bin │ └── Debug │ │ └── net8.0 │ │ └── CoverletSourceRootsMapping_QueueTests └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── QueueTests.AssemblyInfo.cs │ │ ├── QueueTests.AssemblyInfoInputs.cache │ │ ├── QueueTests.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── QueueTests.GlobalUsings.g.cs │ │ ├── QueueTests.assets.cache │ │ └── QueueTests.csproj.AssemblyReference.cache │ ├── QueueTests.csproj.nuget.dgspec.json │ ├── QueueTests.csproj.nuget.g.props │ ├── QueueTests.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── StackTests ├── .gitignore ├── ArrayStackTests.cs ├── LinkedListStackTests.cs ├── StackTests.cs └── StackTests.csproj └── TreesTests ├── .gitignore ├── AVLTreeTests.cs ├── BSTTests.cs ├── BinaryTreeTests.cs ├── NodeTests.cs └── TreesTests.csproj /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dotnet.defaultSolution": "MYAZ204206.sln" 3 | } -------------------------------------------------------------------------------- /Applications/Console/bin/Debug/net8.0/Array.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/bin/Debug/net8.0/Array.dll -------------------------------------------------------------------------------- /Applications/Console/bin/Debug/net8.0/Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/bin/Debug/net8.0/Console.dll -------------------------------------------------------------------------------- /Applications/Console/bin/Debug/net8.0/Console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/bin/Debug/net8.0/Console.exe -------------------------------------------------------------------------------- /Applications/Console/bin/Debug/net8.0/LinkedList.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/bin/Debug/net8.0/LinkedList.dll -------------------------------------------------------------------------------- /Applications/Console/bin/Debug/net8.0/Stack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/bin/Debug/net8.0/Stack.dll -------------------------------------------------------------------------------- /Applications/Console/obj/Console.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/Console.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b4d460228c71d933dea7a7472c4642c8bea8a1cc528ccd0aa891e9e011f1cac0 2 | -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/Console.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/obj/Debug/net8.0/Console.assets.cache -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/Console.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/obj/Debug/net8.0/Console.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/Console.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | adb9b0d866dfe249e1c4fed08017440c8b2df969f4345ecc025b0aeaa0a79296 2 | -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/Console.csproj.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/obj/Debug/net8.0/Console.csproj.Up2Date -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/obj/Debug/net8.0/Console.dll -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/Console.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 430362ecd82113e03ba9be6d9d0d91f8e718b4c14a0bce5a4783ac95ec7303d2 2 | -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/Console.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"F:\\veri-yapilari\\veri-yapilari-ve-algoritmalar\\*":"https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/725bfbb7d9aa2078dd237186897eec0a0038baf7/*"}} -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/obj/Debug/net8.0/apphost.exe -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/ref/Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/obj/Debug/net8.0/ref/Console.dll -------------------------------------------------------------------------------- /Applications/Console/obj/Debug/net8.0/refint/Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Console/obj/Debug/net8.0/refint/Console.dll -------------------------------------------------------------------------------- /Applications/Web/App.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/App.db -------------------------------------------------------------------------------- /Applications/Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace Web.Models; 2 | 3 | public class ErrorViewModel 4 | { 5 | public string? RequestId { get; set; } 6 | 7 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 8 | } 9 | -------------------------------------------------------------------------------- /Applications/Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 |
6 |

Welcome

7 |

Learn about building Web apps with ASP.NET Core.

8 |
9 | -------------------------------------------------------------------------------- /Applications/Web/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |

@ViewData["Title"]

5 | 6 |

Use this page to detail your site's privacy policy.

7 | -------------------------------------------------------------------------------- /Applications/Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Applications/Web/Views/StaticArray/Car.cshtml: -------------------------------------------------------------------------------- 1 | @model Car 2 | 3 |

4 | @Model?.Brand @Model.Model 5 |

-------------------------------------------------------------------------------- /Applications/Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Web 2 | @using Web.Models 3 | @using Libs.Entities; 4 | @using DataStructures.Array; 5 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 6 | -------------------------------------------------------------------------------- /Applications/Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /Applications/Web/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Applications/Web/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*", 9 | "ConnectionStrings": { 10 | "sqliteconnection": "Data Source = App.db;" 11 | } 12 | } -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Array.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Array.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Entities.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Humanizer.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Mono.TextTemplating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Mono.TextTemplating.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/SQLitePCLRaw.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/SQLitePCLRaw.core.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/System.CodeDom.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Web.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/Web.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/Web.exe -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /Applications/Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/Web.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d36ebeca01d7bd96f5228ac5d63f5fde8b79f20698937fd6c4e36125a02137cf 2 | -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/Web.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/obj/Debug/net8.0/Web.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/Web.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 2 | -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/Web.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/obj/Debug/net8.0/Web.assets.cache -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/Web.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/obj/Debug/net8.0/Web.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/Web.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 309dc305a0a25290cb661221cf53fd82cb4872661cfa1b9cd32e7e2ea2b5f04d 2 | -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/Web.csproj.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/obj/Debug/net8.0/Web.csproj.Up2Date -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/obj/Debug/net8.0/Web.dll -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/Web.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | df1fec1fe23f559dcbd855584c7cb49a6fed7c4c32fb8cb4566882f1f4a4484b 2 | -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/Web.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"C:\\MYAZ204206_Veri_Yapilari_ve_Algoritmalar\\*":"https://raw.githubusercontent.com/zcomert/MYAZ204206_Veri_Yapilari_ve_Algoritmalar/6758f4c53e95db3ed03fe08be9674e1f48471c23/*"}} -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/obj/Debug/net8.0/apphost.exe -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/project.razor.vscode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/obj/Debug/net8.0/project.razor.vscode.bin -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/ref/Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/obj/Debug/net8.0/ref/Web.dll -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/refint/Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/obj/Debug/net8.0/refint/Web.dll -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/staticwebassets/msbuild.build.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Applications/Web/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Web.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Applications/Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Applications/Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Applications/Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /DataStructures/Array/Array.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /DataStructures/Array/Contracts/IArray.cs: -------------------------------------------------------------------------------- 1 | namespace DataStructures.Array.Contracts; 2 | 3 | public interface IArray 4 | { 5 | int Length { get; } 6 | T GetItem(int index); 7 | void SetItem(int index, T value); 8 | } -------------------------------------------------------------------------------- /DataStructures/Array/bin/Debug/net8.0/Array.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/Array/bin/Debug/net8.0/Array.dll -------------------------------------------------------------------------------- /DataStructures/Array/obj/Array.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /DataStructures/Array/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /DataStructures/Array/obj/Debug/net8.0/Array.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 2c9c90b4657c7bf25a3c37d29e70671bb0ab586895e73f690c7e78255f9ae487 2 | -------------------------------------------------------------------------------- /DataStructures/Array/obj/Debug/net8.0/Array.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/Array/obj/Debug/net8.0/Array.assets.cache -------------------------------------------------------------------------------- /DataStructures/Array/obj/Debug/net8.0/Array.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | df92c3ed750225ef2431d043444f349074dfd334a7148d28c089bfabc54933f9 2 | -------------------------------------------------------------------------------- /DataStructures/Array/obj/Debug/net8.0/Array.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/Array/obj/Debug/net8.0/Array.dll -------------------------------------------------------------------------------- /DataStructures/Array/obj/Debug/net8.0/Array.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"F:\\veri-yapilari\\veri-yapilari-ve-algoritmalar\\*":"https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/725bfbb7d9aa2078dd237186897eec0a0038baf7/*"}} -------------------------------------------------------------------------------- /DataStructures/Array/obj/Debug/net8.0/ref/Array.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/Array/obj/Debug/net8.0/ref/Array.dll -------------------------------------------------------------------------------- /DataStructures/Array/obj/Debug/net8.0/refint/Array.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/Array/obj/Debug/net8.0/refint/Array.dll -------------------------------------------------------------------------------- /DataStructures/DisjointSet/DisjointSet.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /DataStructures/DisjointSet/bin/Debug/net8.0/DisjointSet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/DisjointSet/bin/Debug/net8.0/DisjointSet.dll -------------------------------------------------------------------------------- /DataStructures/DisjointSet/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /DataStructures/DisjointSet/obj/Debug/net8.0/DisjointSet.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 378bd01e085e13bac26b1d92bd8cf994d39c6c51d0dbf226309415e63d7670cf 2 | -------------------------------------------------------------------------------- /DataStructures/DisjointSet/obj/Debug/net8.0/DisjointSet.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/DisjointSet/obj/Debug/net8.0/DisjointSet.assets.cache -------------------------------------------------------------------------------- /DataStructures/DisjointSet/obj/Debug/net8.0/DisjointSet.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4b004758808cb5b7f61665d490429d13fafde4479b7797bd59b313789e1362b3 2 | -------------------------------------------------------------------------------- /DataStructures/DisjointSet/obj/Debug/net8.0/DisjointSet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/DisjointSet/obj/Debug/net8.0/DisjointSet.dll -------------------------------------------------------------------------------- /DataStructures/DisjointSet/obj/Debug/net8.0/DisjointSet.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"c:\\MYAZ204206_Veri_Yapilari_ve_Algoritmalar\\*":"https://raw.githubusercontent.com/zcomert/MYAZ204206_Veri_Yapilari_ve_Algoritmalar/6758f4c53e95db3ed03fe08be9674e1f48471c23/*"}} -------------------------------------------------------------------------------- /DataStructures/DisjointSet/obj/Debug/net8.0/ref/DisjointSet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/DisjointSet/obj/Debug/net8.0/ref/DisjointSet.dll -------------------------------------------------------------------------------- /DataStructures/DisjointSet/obj/Debug/net8.0/refint/DisjointSet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/DisjointSet/obj/Debug/net8.0/refint/DisjointSet.dll -------------------------------------------------------------------------------- /DataStructures/DisjointSet/obj/DisjointSet.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /DataStructures/LinkedList/LinkedList.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /DataStructures/LinkedList/bin/Debug/net8.0/LinkedList.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/LinkedList/bin/Debug/net8.0/LinkedList.dll -------------------------------------------------------------------------------- /DataStructures/LinkedList/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /DataStructures/LinkedList/obj/Debug/net8.0/LinkedList.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 519efcc96b0c330898b6485270920d8e23d5cb441b57b4cb8391ff0d9b14629a 2 | -------------------------------------------------------------------------------- /DataStructures/LinkedList/obj/Debug/net8.0/LinkedList.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/LinkedList/obj/Debug/net8.0/LinkedList.assets.cache -------------------------------------------------------------------------------- /DataStructures/LinkedList/obj/Debug/net8.0/LinkedList.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 32ffc06728aee9e9051f43963f5c8cee31789984f4ceedbe2e057fbdc1992fbc 2 | -------------------------------------------------------------------------------- /DataStructures/LinkedList/obj/Debug/net8.0/LinkedList.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/LinkedList/obj/Debug/net8.0/LinkedList.dll -------------------------------------------------------------------------------- /DataStructures/LinkedList/obj/Debug/net8.0/LinkedList.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"F:\\veri-yapilari\\veri-yapilari-ve-algoritmalar\\*":"https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/725bfbb7d9aa2078dd237186897eec0a0038baf7/*"}} -------------------------------------------------------------------------------- /DataStructures/LinkedList/obj/Debug/net8.0/ref/LinkedList.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/LinkedList/obj/Debug/net8.0/ref/LinkedList.dll -------------------------------------------------------------------------------- /DataStructures/LinkedList/obj/Debug/net8.0/refint/LinkedList.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/DataStructures/LinkedList/obj/Debug/net8.0/refint/LinkedList.dll -------------------------------------------------------------------------------- /DataStructures/LinkedList/obj/LinkedList.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /DataStructures/Queue/Contracts/IQueue.cs: -------------------------------------------------------------------------------- 1 | namespace DataStructures.Queue.Contracts; 2 | 3 | public interface IQueue 4 | { 5 | public int Count { get; } 6 | public void Enqueue(T item); 7 | public T Dequeue(); 8 | 9 | public T Peek(); 10 | } -------------------------------------------------------------------------------- /DataStructures/Stack/Contracts/IStack.cs: -------------------------------------------------------------------------------- 1 | namespace DataStructures.Stack.Contracts; 2 | 3 | public interface IStack 4 | { 5 | int Count { get; } 6 | void Push(T item); 7 | T? Pop(); 8 | T? Peek(); 9 | } -------------------------------------------------------------------------------- /DataStructures/Trees/Trees.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Libs/Entities/Engine.cs: -------------------------------------------------------------------------------- 1 | namespace Libs.Entities; 2 | 3 | public class Engine 4 | { 5 | public int EngineId { get; set; } 6 | public int Horsepower { get; set; } 7 | public int CylinderCount { get; set; } 8 | public string FuelType { get; set; } 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /Libs/Entities/Entities.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Libs/Entities/bin/Debug/net8.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Entities/bin/Debug/net8.0/Entities.dll -------------------------------------------------------------------------------- /Libs/Entities/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Libs/Entities/obj/Debug/net8.0/Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 2a1a5acce4df39b81078a8ebd243b4f85d1b4ae55ec140bec1a97a43a92c1c57 2 | -------------------------------------------------------------------------------- /Libs/Entities/obj/Debug/net8.0/Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Entities/obj/Debug/net8.0/Entities.assets.cache -------------------------------------------------------------------------------- /Libs/Entities/obj/Debug/net8.0/Entities.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e182b692cecd33b7b3e14f941e37b13f8573ff7999c0df332dfe541c0a5434ad 2 | -------------------------------------------------------------------------------- /Libs/Entities/obj/Debug/net8.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Entities/obj/Debug/net8.0/Entities.dll -------------------------------------------------------------------------------- /Libs/Entities/obj/Debug/net8.0/Entities.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"C:\\MYAZ204206_Veri_Yapilari_ve_Algoritmalar\\*":"https://raw.githubusercontent.com/zcomert/MYAZ204206_Veri_Yapilari_ve_Algoritmalar/6758f4c53e95db3ed03fe08be9674e1f48471c23/*"}} -------------------------------------------------------------------------------- /Libs/Entities/obj/Debug/net8.0/ref/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Entities/obj/Debug/net8.0/ref/Entities.dll -------------------------------------------------------------------------------- /Libs/Entities/obj/Debug/net8.0/refint/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Entities/obj/Debug/net8.0/refint/Entities.dll -------------------------------------------------------------------------------- /Libs/Entities/obj/Entities.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Libs/Maths/Maths.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Libs/Maths/bin/Debug/net8.0/Maths.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Maths/bin/Debug/net8.0/Maths.dll -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] 5 | -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net7.0/Maths.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f1df37b5f9868c62ed89cc4d7ffc2dfb532952bb4aa57ab997bb6942baf5433e 2 | -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net7.0/Maths.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Maths/obj/Debug/net7.0/Maths.assets.cache -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net7.0/Maths.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Maths/obj/Debug/net7.0/Maths.csproj.BuildWithSkipAnalyzers -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net7.0/Maths.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 985cecd1a4210b4f5db8b107007e91696a484dc4 2 | -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net7.0/Maths.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Maths/obj/Debug/net7.0/Maths.dll -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net7.0/ref/Maths.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Maths/obj/Debug/net7.0/ref/Maths.dll -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net7.0/refint/Maths.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Maths/obj/Debug/net7.0/refint/Maths.dll -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net8.0/Maths.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d6a682ee580d62661fb7e8e8b9ab50f6d53d896fe98d8390236c804a22cd597a 2 | -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net8.0/Maths.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Maths/obj/Debug/net8.0/Maths.assets.cache -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net8.0/Maths.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e03297e9c1f4be1bd8f3872a4192a82f704940423762698fbf90792bc5240a3b 2 | -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net8.0/Maths.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Maths/obj/Debug/net8.0/Maths.dll -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net8.0/Maths.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"C:\\MYAZ204206_Veri_Yapilari_ve_Algoritmalar\\*":"https://raw.githubusercontent.com/zcomert/MYAZ204206_Veri_Yapilari_ve_Algoritmalar/6758f4c53e95db3ed03fe08be9674e1f48471c23/*"}} -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net8.0/ref/Maths.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Maths/obj/Debug/net8.0/ref/Maths.dll -------------------------------------------------------------------------------- /Libs/Maths/obj/Debug/net8.0/refint/Maths.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Libs/Maths/obj/Debug/net8.0/refint/Maths.dll -------------------------------------------------------------------------------- /Libs/Maths/obj/Maths.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Shared/Utilities/SortDirection.cs: -------------------------------------------------------------------------------- 1 | namespace Utilities; 2 | public enum SortDirection 3 | { 4 | Asceding = 0, 5 | Descending = 1 6 | } 7 | -------------------------------------------------------------------------------- /Shared/Utilities/Utilities.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Shared/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Shared/obj/Debug/net8.0/Shared.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 57c28309e87b5859aec055d9b4723900216937122b74e5d1d11aea35572bd3e8 2 | -------------------------------------------------------------------------------- /Shared/obj/Debug/net8.0/Shared.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Shared/obj/Debug/net8.0/Shared.assets.cache -------------------------------------------------------------------------------- /Shared/obj/Shared.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/Array.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/Array.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ArrayTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ArrayTest.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/CoverletSourceRootsMapping_ArrayTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/CoverletSourceRootsMapping_ArrayTest -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/testhost.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/testhost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/testhost.exe -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/xunit.assert.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/xunit.core.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/xunit.runner.reporters.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/xunit.runner.reporters.netcoreapp10.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/xunit.runner.utility.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/xunit.runner.utility.netcoreapp10.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a8d913f2017104e53cb2bdedb6464d14173f58681f547c5cc6d37ba6ba6d4e05 2 | -------------------------------------------------------------------------------- /Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.assets.cache -------------------------------------------------------------------------------- /Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3b4445b6989f0eab86565e66736bbbc3086970086e0cc1ccfedbbb43e6fe3cdc 2 | -------------------------------------------------------------------------------- /Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.csproj.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.csproj.Up2Date -------------------------------------------------------------------------------- /Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 0eae0693f74846aa910c64c8e693c0d0d616560cafb3079f4f69a4e73cdfc63a 2 | -------------------------------------------------------------------------------- /Tests/ArrayTest/obj/Debug/net8.0/ArrayTest.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"C:\\MYAZ204206_Veri_Yapilari_ve_Algoritmalar\\*":"https://raw.githubusercontent.com/zcomert/MYAZ204206_Veri_Yapilari_ve_Algoritmalar/6758f4c53e95db3ed03fe08be9674e1f48471c23/*"}} -------------------------------------------------------------------------------- /Tests/ArrayTest/obj/Debug/net8.0/ref/ArrayTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/obj/Debug/net8.0/ref/ArrayTest.dll -------------------------------------------------------------------------------- /Tests/ArrayTest/obj/Debug/net8.0/refint/ArrayTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/ArrayTest/obj/Debug/net8.0/refint/ArrayTest.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/CoverletSourceRootsMapping_DisjointSetTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/CoverletSourceRootsMapping_DisjointSetTests -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/DisjointSet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/DisjointSet.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/DisjointSetTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/DisjointSetTests.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/testhost.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/testhost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/testhost.exe -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/xunit.assert.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/xunit.core.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/xunit.runner.reporters.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/xunit.runner.reporters.netcoreapp10.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/xunit.runner.utility.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/xunit.runner.utility.netcoreapp10.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Tests/DisjointSetTests/obj/Debug/net8.0/Disjoint.55F0CD8A.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/obj/Debug/net8.0/Disjoint.55F0CD8A.Up2Date -------------------------------------------------------------------------------- /Tests/DisjointSetTests/obj/Debug/net8.0/DisjointSetTests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 5fcfe6add50f07c8c4013f590e0a961510b80806e3a4b6c335d06120adfaa1ce 2 | -------------------------------------------------------------------------------- /Tests/DisjointSetTests/obj/Debug/net8.0/DisjointSetTests.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/obj/Debug/net8.0/DisjointSetTests.assets.cache -------------------------------------------------------------------------------- /Tests/DisjointSetTests/obj/Debug/net8.0/DisjointSetTests.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/obj/Debug/net8.0/DisjointSetTests.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Tests/DisjointSetTests/obj/Debug/net8.0/DisjointSetTests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1afe178ddf6470819584ed125209a67481142fd9f2c1e80df208b72f4b330cdf 2 | -------------------------------------------------------------------------------- /Tests/DisjointSetTests/obj/Debug/net8.0/DisjointSetTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/obj/Debug/net8.0/DisjointSetTests.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/obj/Debug/net8.0/DisjointSetTests.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 099cfef20a0f9c16aeaf1744372ca412620338b499e85b2d2770fecf892b01f7 2 | -------------------------------------------------------------------------------- /Tests/DisjointSetTests/obj/Debug/net8.0/DisjointSetTests.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"c:\\MYAZ204206_Veri_Yapilari_ve_Algoritmalar\\*":"https://raw.githubusercontent.com/zcomert/MYAZ204206_Veri_Yapilari_ve_Algoritmalar/6758f4c53e95db3ed03fe08be9674e1f48471c23/*"}} -------------------------------------------------------------------------------- /Tests/DisjointSetTests/obj/Debug/net8.0/ref/DisjointSetTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/obj/Debug/net8.0/ref/DisjointSetTests.dll -------------------------------------------------------------------------------- /Tests/DisjointSetTests/obj/Debug/net8.0/refint/DisjointSetTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/DisjointSetTests/obj/Debug/net8.0/refint/DisjointSetTests.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/CoverletSourceRootsMapping_LinkedListTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/CoverletSourceRootsMapping_LinkedListTests -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/LinkedList.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/LinkedList.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/LinkedListTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/LinkedListTests.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/testhost.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/testhost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/testhost.exe -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/xunit.assert.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/xunit.core.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/xunit.runner.reporters.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/xunit.runner.reporters.netcoreapp10.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/xunit.runner.utility.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/xunit.runner.utility.netcoreapp10.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Tests/LinkedListTests/obj/Debug/net8.0/LinkedLi.0CD4EB2F.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/obj/Debug/net8.0/LinkedLi.0CD4EB2F.Up2Date -------------------------------------------------------------------------------- /Tests/LinkedListTests/obj/Debug/net8.0/LinkedListTests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 853b178871c4a8f5e006af0a8620e3ae3102d96896c5b62b4526c2b98d774953 2 | -------------------------------------------------------------------------------- /Tests/LinkedListTests/obj/Debug/net8.0/LinkedListTests.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/obj/Debug/net8.0/LinkedListTests.assets.cache -------------------------------------------------------------------------------- /Tests/LinkedListTests/obj/Debug/net8.0/LinkedListTests.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/obj/Debug/net8.0/LinkedListTests.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Tests/LinkedListTests/obj/Debug/net8.0/LinkedListTests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4aac8755bd6a788fe719f34ed30510c9c4081eb29951f4ed72512e93aeaa99d4 2 | -------------------------------------------------------------------------------- /Tests/LinkedListTests/obj/Debug/net8.0/LinkedListTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/obj/Debug/net8.0/LinkedListTests.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/obj/Debug/net8.0/LinkedListTests.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | f867cc40361d62d0e668ab52b20ee3fb1728dc4078c7effbae3846148e4b8828 2 | -------------------------------------------------------------------------------- /Tests/LinkedListTests/obj/Debug/net8.0/LinkedListTests.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"C:\\MYAZ204206_Veri_Yapilari_ve_Algoritmalar\\*":"https://raw.githubusercontent.com/zcomert/MYAZ204206_Veri_Yapilari_ve_Algoritmalar/6758f4c53e95db3ed03fe08be9674e1f48471c23/*"}} -------------------------------------------------------------------------------- /Tests/LinkedListTests/obj/Debug/net8.0/ref/LinkedListTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/obj/Debug/net8.0/ref/LinkedListTests.dll -------------------------------------------------------------------------------- /Tests/LinkedListTests/obj/Debug/net8.0/refint/LinkedListTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/LinkedListTests/obj/Debug/net8.0/refint/LinkedListTests.dll -------------------------------------------------------------------------------- /Tests/MathsTests/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/CoverletSourceRootsMapping_MathsTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/CoverletSourceRootsMapping_MathsTests -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/Maths.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/Maths.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/MathsTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/MathsTests.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/testhost.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/testhost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/testhost.exe -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/xunit.abstractions.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/xunit.assert.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/xunit.core.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/xunit.runner.reporters.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/xunit.runner.reporters.netcoreapp10.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/xunit.runner.utility.netcoreapp10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/xunit.runner.utility.netcoreapp10.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] 5 | -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net7.0/MathsTests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 57e0dbe289bdd1bd90dee5b085f624043af88c0e608d6d862c2616745cc432d4 2 | -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net7.0/MathsTests.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net7.0/MathsTests.assets.cache -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net7.0/MathsTests.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net7.0/MathsTests.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net7.0/MathsTests.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net7.0/MathsTests.csproj.BuildWithSkipAnalyzers -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net7.0/MathsTests.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net7.0/MathsTests.csproj.CopyComplete -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net7.0/MathsTests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0131f6209a8340294f3ac41af23547507943a45b 2 | -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net7.0/MathsTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net7.0/MathsTests.dll -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net7.0/MathsTests.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 3ead9b384f568de3e70afc44d1dd5c11c2c5605f 2 | -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net7.0/ref/MathsTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net7.0/ref/MathsTests.dll -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net7.0/refint/MathsTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net7.0/refint/MathsTests.dll -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net8.0/MathsTests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a863d47f99a44c5e379903ae15e3d88265aaafaa97efb167a2793c09c65b2e7d 2 | -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net8.0/MathsTests.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net8.0/MathsTests.assets.cache -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net8.0/MathsTests.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net8.0/MathsTests.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net8.0/MathsTests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 197acb7eb30352e1483b04235bb23ca4f1d0914423b5f4ae0ff792bbcf36534d 2 | -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net8.0/MathsTests.csproj.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net8.0/MathsTests.csproj.Up2Date -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net8.0/MathsTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net8.0/MathsTests.dll -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net8.0/MathsTests.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 36d6c854ed185674714a9e73162c5a08c4026902ec7de7a0e1a476a7389c60b2 2 | -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net8.0/MathsTests.sourcelink.json: -------------------------------------------------------------------------------- 1 | {"documents":{"C:\\MYAZ204206_Veri_Yapilari_ve_Algoritmalar\\*":"https://raw.githubusercontent.com/zcomert/MYAZ204206_Veri_Yapilari_ve_Algoritmalar/6758f4c53e95db3ed03fe08be9674e1f48471c23/*"}} -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net8.0/ref/MathsTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net8.0/ref/MathsTests.dll -------------------------------------------------------------------------------- /Tests/MathsTests/obj/Debug/net8.0/refint/MathsTests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/MathsTests/obj/Debug/net8.0/refint/MathsTests.dll -------------------------------------------------------------------------------- /Tests/QueueTests/bin/Debug/net8.0/CoverletSourceRootsMapping_QueueTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/QueueTests/bin/Debug/net8.0/CoverletSourceRootsMapping_QueueTests -------------------------------------------------------------------------------- /Tests/QueueTests/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /Tests/QueueTests/obj/Debug/net8.0/QueueTests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 00e382adfb35919ff1936fafea79806d12199d4dd5f1eef934c00bada5c51551 2 | -------------------------------------------------------------------------------- /Tests/QueueTests/obj/Debug/net8.0/QueueTests.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/QueueTests/obj/Debug/net8.0/QueueTests.assets.cache -------------------------------------------------------------------------------- /Tests/QueueTests/obj/Debug/net8.0/QueueTests.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zcomert/veri-yapilari-ve-algoritmalar/1bec1f095764ad972d9d66892e03f884538046d6/Tests/QueueTests/obj/Debug/net8.0/QueueTests.csproj.AssemblyReference.cache --------------------------------------------------------------------------------