├── .vs └── OtherSubSetSum │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ ├── project-colors.json │ └── v17 │ ├── .futdcache.v1 │ └── .suo ├── OtherSubSetSum.sln └── OtherSubSetSum ├── OtherSubSetSum.csproj ├── Program.cs ├── bin └── Debug │ └── net5.0 │ ├── OtherSubSetSum.deps.json │ ├── OtherSubSetSum.dll │ ├── OtherSubSetSum.exe │ ├── OtherSubSetSum.pdb │ ├── OtherSubSetSum.runtimeconfig.dev.json │ ├── OtherSubSetSum.runtimeconfig.json │ └── ref │ └── OtherSubSetSum.dll └── obj ├── Debug └── net5.0 │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ ├── OtherSubSetSum.AssemblyInfo.cs │ ├── OtherSubSetSum.AssemblyInfoInputs.cache │ ├── OtherSubSetSum.GeneratedMSBuildEditorConfig.editorconfig │ ├── OtherSubSetSum.assets.cache │ ├── OtherSubSetSum.csproj.AssemblyReference.cache │ ├── OtherSubSetSum.csproj.CoreCompileInputs.cache │ ├── OtherSubSetSum.csproj.FileListAbsolute.txt │ ├── OtherSubSetSum.dll │ ├── OtherSubSetSum.genruntimeconfig.cache │ ├── OtherSubSetSum.pdb │ ├── apphost.exe │ └── ref │ └── OtherSubSetSum.dll ├── OtherSubSetSum.csproj.nuget.dgspec.json ├── OtherSubSetSum.csproj.nuget.g.props ├── OtherSubSetSum.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /.vs/OtherSubSetSum/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/.vs/OtherSubSetSum/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/OtherSubSetSum/project-colors.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "ProjectMap": { 4 | "b4dc61c3-d16a-43f1-ae97-db4857ba5c5e": { 5 | "ProjectGuid": "b4dc61c3-d16a-43f1-ae97-db4857ba5c5e", 6 | "DisplayName": "OtherSubSetSum", 7 | "ColorIndex": 0 8 | } 9 | }, 10 | "NextColorIndex": 1 11 | } -------------------------------------------------------------------------------- /.vs/OtherSubSetSum/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/.vs/OtherSubSetSum/v17/.futdcache.v1 -------------------------------------------------------------------------------- /.vs/OtherSubSetSum/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/.vs/OtherSubSetSum/v17/.suo -------------------------------------------------------------------------------- /OtherSubSetSum.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.0.32014.148 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OtherSubSetSum", "OtherSubSetSum\OtherSubSetSum.csproj", "{B4DC61C3-D16A-43F1-AE97-DB4857BA5C5E}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B4DC61C3-D16A-43F1-AE97-DB4857BA5C5E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {B4DC61C3-D16A-43F1-AE97-DB4857BA5C5E}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {B4DC61C3-D16A-43F1-AE97-DB4857BA5C5E}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {B4DC61C3-D16A-43F1-AE97-DB4857BA5C5E}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {4662DDEB-F7D3-40BF-BC26-0347B77AAE71} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /OtherSubSetSum/OtherSubSetSum.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net5.0 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /OtherSubSetSum/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace OtherSubSetSum 5 | { 6 | internal class Program 7 | { 8 | static bool isSubsetSum(int[] set) 9 | { 10 | int max = 0; 11 | List list = new List(); 12 | for (int i = 0; i < set.Length; i++) 13 | { 14 | list.Add(set[i]); 15 | if (set[i] > max) 16 | { 17 | max = set[i]; 18 | } 19 | } 20 | list.Remove(max); 21 | int[] set2 = new int[list.Count]; 22 | for (int i = 0; i < set2.Length; i++) 23 | { 24 | set2[i] = list[i]; 25 | } 26 | int sum = max; 27 | int n = set2.Length; 28 | 29 | bool[,] subset = new bool[sum + 1, n + 1]; 30 | 31 | for (int i = 0; i <= n; i++) 32 | subset[0, i] = true; 33 | 34 | for (int i = 1; i <= sum; i++) 35 | subset[i, 0] = false; 36 | 37 | for (int i = 1; i <= sum; i++) 38 | { 39 | for (int j = 1; j <= n; j++) 40 | { 41 | subset[i, j] = subset[i, j - 1]; 42 | if (i >= set[j - 1]) 43 | subset[i, j] = subset[i, j] || subset[i - set[j - 1], j - 1]; 44 | } 45 | } 46 | 47 | return subset[sum, n]; 48 | } 49 | 50 | // Driver code 51 | public static void Main() 52 | { 53 | Console.WriteLine("girin: "); 54 | int a = int.Parse(Console.ReadLine()); 55 | int[] arr = new int[a]; 56 | for (int i = 0; i < a; i++) 57 | { 58 | arr[i] = int.Parse(Console.ReadLine()); 59 | } 60 | Console.WriteLine(isSubsetSum(arr)); 61 | } 62 | 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /OtherSubSetSum/bin/Debug/net5.0/OtherSubSetSum.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v5.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v5.0": { 9 | "OtherSubSetSum/1.0.0": { 10 | "runtime": { 11 | "OtherSubSetSum.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "OtherSubSetSum/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /OtherSubSetSum/bin/Debug/net5.0/OtherSubSetSum.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/OtherSubSetSum/bin/Debug/net5.0/OtherSubSetSum.dll -------------------------------------------------------------------------------- /OtherSubSetSum/bin/Debug/net5.0/OtherSubSetSum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/OtherSubSetSum/bin/Debug/net5.0/OtherSubSetSum.exe -------------------------------------------------------------------------------- /OtherSubSetSum/bin/Debug/net5.0/OtherSubSetSum.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/OtherSubSetSum/bin/Debug/net5.0/OtherSubSetSum.pdb -------------------------------------------------------------------------------- /OtherSubSetSum/bin/Debug/net5.0/OtherSubSetSum.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\cosku\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\cosku\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /OtherSubSetSum/bin/Debug/net5.0/OtherSubSetSum.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /OtherSubSetSum/bin/Debug/net5.0/ref/OtherSubSetSum.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/OtherSubSetSum/bin/Debug/net5.0/ref/OtherSubSetSum.dll -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("OtherSubSetSum")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("OtherSubSetSum")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("OtherSubSetSum")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 321aefc154b4e78005031a87add4314c706a8ac5 2 | -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net5.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = OtherSubSetSum 10 | build_property.ProjectDir = C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\ 11 | -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.assets.cache -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 64ab9e56257e309375528a1fca313ba6c6fe4002 2 | -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\bin\Debug\net5.0\OtherSubSetSum.exe 2 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\bin\Debug\net5.0\OtherSubSetSum.deps.json 3 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\bin\Debug\net5.0\OtherSubSetSum.runtimeconfig.json 4 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\bin\Debug\net5.0\OtherSubSetSum.runtimeconfig.dev.json 5 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\bin\Debug\net5.0\OtherSubSetSum.dll 6 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\bin\Debug\net5.0\ref\OtherSubSetSum.dll 7 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\bin\Debug\net5.0\OtherSubSetSum.pdb 8 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\obj\Debug\net5.0\OtherSubSetSum.csproj.AssemblyReference.cache 9 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\obj\Debug\net5.0\OtherSubSetSum.GeneratedMSBuildEditorConfig.editorconfig 10 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\obj\Debug\net5.0\OtherSubSetSum.AssemblyInfoInputs.cache 11 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\obj\Debug\net5.0\OtherSubSetSum.AssemblyInfo.cs 12 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\obj\Debug\net5.0\OtherSubSetSum.csproj.CoreCompileInputs.cache 13 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\obj\Debug\net5.0\OtherSubSetSum.dll 14 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\obj\Debug\net5.0\ref\OtherSubSetSum.dll 15 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\obj\Debug\net5.0\OtherSubSetSum.pdb 16 | C:\Users\cosku\source\repos\OtherSubSetSum\OtherSubSetSum\obj\Debug\net5.0\OtherSubSetSum.genruntimeconfig.cache 17 | -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.dll -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 85b5c14f31f5d8da145594bc172c2fc6d25fcfa8 2 | -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/OtherSubSetSum/obj/Debug/net5.0/OtherSubSetSum.pdb -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/OtherSubSetSum/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /OtherSubSetSum/obj/Debug/net5.0/ref/OtherSubSetSum.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/SubSetSum/95c2e252c0d2b278535c5dfa15a946d0faf5f6d1/OtherSubSetSum/obj/Debug/net5.0/ref/OtherSubSetSum.dll -------------------------------------------------------------------------------- /OtherSubSetSum/obj/OtherSubSetSum.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\cosku\\source\\repos\\OtherSubSetSum\\OtherSubSetSum\\OtherSubSetSum.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\cosku\\source\\repos\\OtherSubSetSum\\OtherSubSetSum\\OtherSubSetSum.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\cosku\\source\\repos\\OtherSubSetSum\\OtherSubSetSum\\OtherSubSetSum.csproj", 11 | "projectName": "OtherSubSetSum", 12 | "projectPath": "C:\\Users\\cosku\\source\\repos\\OtherSubSetSum\\OtherSubSetSum\\OtherSubSetSum.csproj", 13 | "packagesPath": "C:\\Users\\cosku\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\cosku\\source\\repos\\OtherSubSetSum\\OtherSubSetSum\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\cosku\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net5.0" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net5.0": { 29 | "targetAlias": "net5.0", 30 | "projectReferences": {} 31 | } 32 | }, 33 | "warningProperties": { 34 | "warnAsError": [ 35 | "NU1605" 36 | ] 37 | } 38 | }, 39 | "frameworks": { 40 | "net5.0": { 41 | "targetAlias": "net5.0", 42 | "imports": [ 43 | "net461", 44 | "net462", 45 | "net47", 46 | "net471", 47 | "net472", 48 | "net48" 49 | ], 50 | "assetTargetFallback": true, 51 | "warn": true, 52 | "frameworkReferences": { 53 | "Microsoft.NETCore.App": { 54 | "privateAssets": "all" 55 | } 56 | }, 57 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.105\\RuntimeIdentifierGraph.json" 58 | } 59 | } 60 | } 61 | } 62 | } -------------------------------------------------------------------------------- /OtherSubSetSum/obj/OtherSubSetSum.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\cosku\.nuget\packages\ 9 | PackageReference 10 | 6.0.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /OtherSubSetSum/obj/OtherSubSetSum.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /OtherSubSetSum/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | "net5.0": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | "net5.0": [] 9 | }, 10 | "packageFolders": { 11 | "C:\\Users\\cosku\\.nuget\\packages\\": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "C:\\Users\\cosku\\source\\repos\\OtherSubSetSum\\OtherSubSetSum\\OtherSubSetSum.csproj", 17 | "projectName": "OtherSubSetSum", 18 | "projectPath": "C:\\Users\\cosku\\source\\repos\\OtherSubSetSum\\OtherSubSetSum\\OtherSubSetSum.csproj", 19 | "packagesPath": "C:\\Users\\cosku\\.nuget\\packages\\", 20 | "outputPath": "C:\\Users\\cosku\\source\\repos\\OtherSubSetSum\\OtherSubSetSum\\obj\\", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "C:\\Users\\cosku\\AppData\\Roaming\\NuGet\\NuGet.Config", 24 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 25 | ], 26 | "originalTargetFrameworks": [ 27 | "net5.0" 28 | ], 29 | "sources": { 30 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 31 | "https://api.nuget.org/v3/index.json": {} 32 | }, 33 | "frameworks": { 34 | "net5.0": { 35 | "targetAlias": "net5.0", 36 | "projectReferences": {} 37 | } 38 | }, 39 | "warningProperties": { 40 | "warnAsError": [ 41 | "NU1605" 42 | ] 43 | } 44 | }, 45 | "frameworks": { 46 | "net5.0": { 47 | "targetAlias": "net5.0", 48 | "imports": [ 49 | "net461", 50 | "net462", 51 | "net47", 52 | "net471", 53 | "net472", 54 | "net48" 55 | ], 56 | "assetTargetFallback": true, 57 | "warn": true, 58 | "frameworkReferences": { 59 | "Microsoft.NETCore.App": { 60 | "privateAssets": "all" 61 | } 62 | }, 63 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.105\\RuntimeIdentifierGraph.json" 64 | } 65 | } 66 | } 67 | } -------------------------------------------------------------------------------- /OtherSubSetSum/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "KcD4F+O6KgUIpHTF0aOM05HtwG9u0HybqeS5/I+CpthZBDB5SfqZA4k0zO1TIZdsTSS3Q5jmlmm0fQ+0WSrU+g==", 4 | "success": true, 5 | "projectFilePath": "C:\\Users\\cosku\\source\\repos\\OtherSubSetSum\\OtherSubSetSum\\OtherSubSetSum.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } --------------------------------------------------------------------------------