Skip to content

Commit 41c20ac

Browse files
authored
Merge pull request #413 from ikesnowy/dev
2.4
2 parents aeb7775 + 83123a3 commit 41c20ac

File tree

218 files changed

+12473
-64765
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+12473
-64765
lines changed

1 Fundamental/1.3/Generics/LinkedList.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ public Item Delete(int index)
105105
if (index == 0)
106106
{
107107
this.first = this.first.next;
108+
this.count--;
108109
return temp;
109110
}
110111

1 Fundamental/1.5/1.5.20/LinkedList.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ public Item Delete(int index)
125125
Item temp = this.first.item;
126126
if (index == 0)
127127
{
128+
this.count--;
128129
this.first = this.first.next;
129130
return temp;
130131
}

2 Sorting/2.1/SortUnionTest/ProblemUnionTest.cs

Lines changed: 0 additions & 183 deletions
This file was deleted.

2 Sorting/2.1/SortUnionTest/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)