Skip to content

Commit

Permalink
added arrayDominates problem paragraph
Browse files Browse the repository at this point in the history
  • Loading branch information
sametuca committed Jun 29, 2023
1 parent af8de14 commit 93aa23e
Show file tree
Hide file tree
Showing 28 changed files with 73 additions and 50 deletions.
25 changes: 24 additions & 1 deletion CodeWars.ArrayDominates/Program.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
namespace CodeWars.ArrayDominates
{
/**
*
* DESCRIPTION:
A zero-indexed array arr consisting of n integers is given. The dominator of array arr is the value that occurs in more than half of the elements of arr.
For example, consider array arr such that arr = [3,4,3,2,3,1,3,3]
The dominator of arr is 3 because it occurs in 5 out of 8 elements of arr and 5 is more than a half of 8.
Write a function dominator(arr) that, given a zero-indexed array arr consisting of n integers, returns the dominator of arr. The function should return −1 if array does not have a dominator. All values in arr will be >=0.
*
*
* */
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
WhoDominates(new int[] { 3, 4, 3, 2, 3, 1, 3, 3 });
}
public static int WhoDominates(int[] array)
{

Dictionary<int,int> dic = new Dictionary<int,int>();
for (int i = 0; i < array.Length; i++)
{
Expand All @@ -35,5 +45,18 @@ public static int WhoDominates(int[] array)
}

}
// 2. Solution
public static int WhoDominates2(int[] array)
{

var groups = array.GroupBy(a => a);
if (groups.Max(g => g.Count()) > array.Length / 2)
{
return groups.OrderByDescending(g => g.Count()).First().Key;
}
return -1;

}

}
}
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"format": 1,
"restore": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ArraysContainsCommonItem\\CodeWars.ArraysContainsCommonItem.csproj": {}
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.ArraysContainsCommonItem\\CodeWars.ArraysContainsCommonItem.csproj": {}
},
"projects": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ArraysContainsCommonItem\\CodeWars.ArraysContainsCommonItem.csproj": {
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.ArraysContainsCommonItem\\CodeWars.ArraysContainsCommonItem.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ArraysContainsCommonItem\\CodeWars.ArraysContainsCommonItem.csproj",
"projectUniqueName": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.ArraysContainsCommonItem\\CodeWars.ArraysContainsCommonItem.csproj",
"projectName": "CodeWars.ArraysContainsCommonItem",
"projectPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ArraysContainsCommonItem\\CodeWars.ArraysContainsCommonItem.csproj",
"projectPath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.ArraysContainsCommonItem\\CodeWars.ArraysContainsCommonItem.csproj",
"packagesPath": "C:\\Users\\Samet UCA\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ArraysContainsCommonItem\\obj\\",
"projectStyle": "PackageReference",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = CodeWars.ArraysContainsCommonItem
build_property.ProjectDir = C:\Users\Samet UCA\Source\Repos\code-wars\CodeWars.ArraysContainsCommonItem\
build_property.ProjectDir = C:\Users\Samet UCA\source\repos\code-wars\CodeWars.ArraysContainsCommonItem\
Binary file not shown.
4 changes: 2 additions & 2 deletions CodeWars.ArraysContainsCommonItem/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "4drgN/rAD5C0OWVoTuEgk1PGxElAK8vFEC4b31KTYn/iLW0YY92aTDpRMwmRGnNKjVNBRYiRW0qDjIrq6mivYw==",
"dgSpecHash": "g77/C7y7gY0N0Sgl+K/8kN5btKYk9lr6A9bkUAtGgpx72rcg7etIyUV2/BEmy/hIHMjVIdnKUUSPh79OM55uLQ==",
"success": true,
"projectFilePath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ArraysContainsCommonItem\\CodeWars.ArraysContainsCommonItem.csproj",
"projectFilePath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.ArraysContainsCommonItem\\CodeWars.ArraysContainsCommonItem.csproj",
"expectedPackageFiles": [
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512",
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"format": 1,
"restore": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.DescendingInteger\\CodeWars.DescendingInteger.csproj": {}
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.DescendingInteger\\CodeWars.DescendingInteger.csproj": {}
},
"projects": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.DescendingInteger\\CodeWars.DescendingInteger.csproj": {
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.DescendingInteger\\CodeWars.DescendingInteger.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.DescendingInteger\\CodeWars.DescendingInteger.csproj",
"projectUniqueName": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.DescendingInteger\\CodeWars.DescendingInteger.csproj",
"projectName": "CodeWars.DescendingInteger",
"projectPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.DescendingInteger\\CodeWars.DescendingInteger.csproj",
"projectPath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.DescendingInteger\\CodeWars.DescendingInteger.csproj",
"packagesPath": "C:\\Users\\Samet UCA\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.DescendingInteger\\obj\\",
"projectStyle": "PackageReference",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = CodeWars.DescendingInteger
build_property.ProjectDir = C:\Users\Samet UCA\Source\Repos\code-wars\CodeWars.DescendingInteger\
build_property.ProjectDir = C:\Users\Samet UCA\source\repos\code-wars\CodeWars.DescendingInteger\
Binary file not shown.
4 changes: 2 additions & 2 deletions CodeWars.DescendingInteger/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "a1XmSkMvmAgZYRUhUwQ5QqpillADpR6yiLs37Rw8jO0anKpno6jQIHzO2X/TCpkvzf1hFGknX6pW24puv5mgRw==",
"dgSpecHash": "gmU6tfJvTAIM0xpxwFrGr1vAu/4MmYuqHYtzn/S5aZJMXpY7lV4ywBCMkjoCqPmuz7DcIgnoij8WU68LoAJR8A==",
"success": true,
"projectFilePath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.DescendingInteger\\CodeWars.DescendingInteger.csproj",
"projectFilePath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.DescendingInteger\\CodeWars.DescendingInteger.csproj",
"expectedPackageFiles": [
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512",
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"format": 1,
"restore": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.FindTheOddInt\\CodeWars.FindTheOddInt.csproj": {}
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.FindTheOddInt\\CodeWars.FindTheOddInt.csproj": {}
},
"projects": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.FindTheOddInt\\CodeWars.FindTheOddInt.csproj": {
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.FindTheOddInt\\CodeWars.FindTheOddInt.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.FindTheOddInt\\CodeWars.FindTheOddInt.csproj",
"projectUniqueName": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.FindTheOddInt\\CodeWars.FindTheOddInt.csproj",
"projectName": "CodeWars.FindTheOddInt",
"projectPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.FindTheOddInt\\CodeWars.FindTheOddInt.csproj",
"projectPath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.FindTheOddInt\\CodeWars.FindTheOddInt.csproj",
"packagesPath": "C:\\Users\\Samet UCA\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.FindTheOddInt\\obj\\",
"projectStyle": "PackageReference",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = CodeWars.FindTheOddInt
build_property.ProjectDir = C:\Users\Samet UCA\Source\Repos\code-wars\CodeWars.FindTheOddInt\
build_property.ProjectDir = C:\Users\Samet UCA\source\repos\code-wars\CodeWars.FindTheOddInt\
4 changes: 2 additions & 2 deletions CodeWars.FindTheOddInt/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "gHduA+bX43kojKSYP3j/UdsHtXKFFej2353YkgjRA0zpw4QYRqF+Q+1u9sQJodecLynjV//9rmnfd+QiItSscw==",
"dgSpecHash": "u0YVOYpR4nZcc3DD8pyYlOzw0vFpqva3KuJjJQTakXPlkovjVkxHJ22DjnGlUQPc09huz0H1qwjsaNaHrASFvw==",
"success": true,
"projectFilePath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.FindTheOddInt\\CodeWars.FindTheOddInt.csproj",
"projectFilePath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.FindTheOddInt\\CodeWars.FindTheOddInt.csproj",
"expectedPackageFiles": [
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512",
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512",
Expand Down
8 changes: 4 additions & 4 deletions CodeWars.IQTest/obj/CodeWars.IQTest.csproj.nuget.dgspec.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"format": 1,
"restore": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.IQTest\\CodeWars.IQTest.csproj": {}
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.IQTest\\CodeWars.IQTest.csproj": {}
},
"projects": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.IQTest\\CodeWars.IQTest.csproj": {
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.IQTest\\CodeWars.IQTest.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.IQTest\\CodeWars.IQTest.csproj",
"projectUniqueName": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.IQTest\\CodeWars.IQTest.csproj",
"projectName": "CodeWars.IQTest",
"projectPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.IQTest\\CodeWars.IQTest.csproj",
"projectPath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.IQTest\\CodeWars.IQTest.csproj",
"packagesPath": "C:\\Users\\Samet UCA\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.IQTest\\obj\\",
"projectStyle": "PackageReference",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = CodeWars.IQTest
build_property.ProjectDir = C:\Users\Samet UCA\Source\Repos\code-wars\CodeWars.IQTest\
build_property.ProjectDir = C:\Users\Samet UCA\source\repos\code-wars\CodeWars.IQTest\
Binary file modified CodeWars.IQTest/obj/Debug/net5.0/CodeWars.IQTest.assets.cache
Binary file not shown.
4 changes: 2 additions & 2 deletions CodeWars.IQTest/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "bW7pJcTqsaFLAK+BNYuKtfyj4vCzVwvqchfQKhqxl5gkGazxbMn8hGQn4eaQSDwpHMf3GxRL91oT9AfI4uPDGg==",
"dgSpecHash": "c/CZb+YBPgtb88GdFo86D1aw29KA+vnsnJUnCkYw6hRipx5CivuaNJ9tdT2LubCrz/TgNpeqsVjbV3QcwbvPcw==",
"success": true,
"projectFilePath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.IQTest\\CodeWars.IQTest.csproj",
"projectFilePath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.IQTest\\CodeWars.IQTest.csproj",
"expectedPackageFiles": [
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512",
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"format": 1,
"restore": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.SumOfTwoLowestIntegers\\CodeWars.SumOfTwoLowestIntegers.csproj": {}
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.SumOfTwoLowestIntegers\\CodeWars.SumOfTwoLowestIntegers.csproj": {}
},
"projects": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.SumOfTwoLowestIntegers\\CodeWars.SumOfTwoLowestIntegers.csproj": {
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.SumOfTwoLowestIntegers\\CodeWars.SumOfTwoLowestIntegers.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.SumOfTwoLowestIntegers\\CodeWars.SumOfTwoLowestIntegers.csproj",
"projectUniqueName": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.SumOfTwoLowestIntegers\\CodeWars.SumOfTwoLowestIntegers.csproj",
"projectName": "CodeWars.SumOfTwoLowestIntegers",
"projectPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.SumOfTwoLowestIntegers\\CodeWars.SumOfTwoLowestIntegers.csproj",
"projectPath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.SumOfTwoLowestIntegers\\CodeWars.SumOfTwoLowestIntegers.csproj",
"packagesPath": "C:\\Users\\Samet UCA\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.SumOfTwoLowestIntegers\\obj\\",
"projectStyle": "PackageReference",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = CodeWars.SumOfTwoLowestIntegers
build_property.ProjectDir = C:\Users\Samet UCA\Source\Repos\code-wars\CodeWars.SumOfTwoLowestIntegers\
build_property.ProjectDir = C:\Users\Samet UCA\source\repos\code-wars\CodeWars.SumOfTwoLowestIntegers\
Binary file not shown.
4 changes: 2 additions & 2 deletions CodeWars.SumOfTwoLowestIntegers/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "hUXx7MLH34SkJt1GvR4ZLDVChRP/lk9CItIh29NbxZ4qb82T8u8VQ5p1V9KO6gCkDF1wjWydxcNLDvj/m3Iy2A==",
"dgSpecHash": "nv0Lnn0DAFAA7nPT67/f28Ml2mFLs85uNd6KPDn39BTcRdHHgIsxPmaj5rzKWC7UAQb/z8M3vNBORcOSAG96Ww==",
"success": true,
"projectFilePath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.SumOfTwoLowestIntegers\\CodeWars.SumOfTwoLowestIntegers.csproj",
"projectFilePath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.SumOfTwoLowestIntegers\\CodeWars.SumOfTwoLowestIntegers.csproj",
"expectedPackageFiles": [
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512",
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"format": 1,
"restore": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ValidBraces\\CodeWars.ValidBraces.csproj": {}
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.ValidBraces\\CodeWars.ValidBraces.csproj": {}
},
"projects": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ValidBraces\\CodeWars.ValidBraces.csproj": {
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.ValidBraces\\CodeWars.ValidBraces.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ValidBraces\\CodeWars.ValidBraces.csproj",
"projectUniqueName": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.ValidBraces\\CodeWars.ValidBraces.csproj",
"projectName": "CodeWars.ValidBraces",
"projectPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ValidBraces\\CodeWars.ValidBraces.csproj",
"projectPath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.ValidBraces\\CodeWars.ValidBraces.csproj",
"packagesPath": "C:\\Users\\Samet UCA\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ValidBraces\\obj\\",
"projectStyle": "PackageReference",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = CodeWars.ValidBraces
build_property.ProjectDir = C:\Users\Samet UCA\Source\Repos\code-wars\CodeWars.ValidBraces\
build_property.ProjectDir = C:\Users\Samet UCA\source\repos\code-wars\CodeWars.ValidBraces\
Binary file not shown.
4 changes: 2 additions & 2 deletions CodeWars.ValidBraces/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "DuJhTebZ3vHv+6rW1oF19MaA0XR1a8Bag9Rdal458pkGg1ze9NsTDILEEWmWzExnSHp3hCpXZ1DqqL9Og5zh7w==",
"dgSpecHash": "yJGTJaq8aYRdPNnIFwk1ugXUEDjFlmrd4f+wY0F0Dap3prgkM1aoNZLPZbKY0cVPjm0+YEWsvO/4yxJg2P5kcA==",
"success": true,
"projectFilePath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.ValidBraces\\CodeWars.ValidBraces.csproj",
"projectFilePath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.ValidBraces\\CodeWars.ValidBraces.csproj",
"expectedPackageFiles": [
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512",
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"format": 1,
"restore": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.WhichAreIn\\CodeWars.WhichAreIn.csproj": {}
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.WhichAreIn\\CodeWars.WhichAreIn.csproj": {}
},
"projects": {
"C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.WhichAreIn\\CodeWars.WhichAreIn.csproj": {
"C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.WhichAreIn\\CodeWars.WhichAreIn.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.WhichAreIn\\CodeWars.WhichAreIn.csproj",
"projectUniqueName": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.WhichAreIn\\CodeWars.WhichAreIn.csproj",
"projectName": "CodeWars.WhichAreIn",
"projectPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.WhichAreIn\\CodeWars.WhichAreIn.csproj",
"projectPath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.WhichAreIn\\CodeWars.WhichAreIn.csproj",
"packagesPath": "C:\\Users\\Samet UCA\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.WhichAreIn\\obj\\",
"projectStyle": "PackageReference",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = CodeWars.WhichAreIn
build_property.ProjectDir = C:\Users\Samet UCA\Source\Repos\code-wars\CodeWars.WhichAreIn\
build_property.ProjectDir = C:\Users\Samet UCA\source\repos\code-wars\CodeWars.WhichAreIn\
Binary file not shown.
4 changes: 2 additions & 2 deletions CodeWars.WhichAreIn/obj/project.nuget.cache
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "6Tdqo/xp/If7J30Y2ekXC900oY1Exmp0veeaF2O4cIjWQ+HDgfnXazugeTnwGPAMApUTkPYRTUqPjyTxtaJuxw==",
"dgSpecHash": "H2XEM21+rPDfqwOPM2N6ip/OeZ+gsjUpRJtCaNVWxnYv9l7mS41A2O3tWVTw+lFHdSTWwJT0aT9nIrbLmi7T8g==",
"success": true,
"projectFilePath": "C:\\Users\\Samet UCA\\Source\\Repos\\code-wars\\CodeWars.WhichAreIn\\CodeWars.WhichAreIn.csproj",
"projectFilePath": "C:\\Users\\Samet UCA\\source\\repos\\code-wars\\CodeWars.WhichAreIn\\CodeWars.WhichAreIn.csproj",
"expectedPackageFiles": [
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\5.0.0\\microsoft.windowsdesktop.app.ref.5.0.0.nupkg.sha512",
"C:\\Users\\Samet UCA\\.nuget\\packages\\microsoft.netcore.app.ref\\5.0.0\\microsoft.netcore.app.ref.5.0.0.nupkg.sha512",
Expand Down

0 comments on commit 93aa23e

Please sign in to comment.