Skip to content

Commit

Permalink
Merge pull request #413 from ikesnowy/dev
Browse files Browse the repository at this point in the history
2.4
  • Loading branch information
ikesnowy committed Jan 2, 2019
2 parents aeb7775 + 83123a3 commit 41c20ac
Show file tree
Hide file tree
Showing 218 changed files with 12,473 additions and 64,765 deletions.
1 change: 1 addition & 0 deletions 1 Fundamental/1.3/Generics/LinkedList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ public Item Delete(int index)
if (index == 0)
{
this.first = this.first.next;
this.count--;
return temp;
}

Expand Down
1 change: 1 addition & 0 deletions 1 Fundamental/1.5/1.5.20/LinkedList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ public Item Delete(int index)
Item temp = this.first.item;
if (index == 0)
{
this.count--;
this.first = this.first.next;
return temp;
}
Expand Down
183 changes: 0 additions & 183 deletions 2 Sorting/2.1/SortUnionTest/ProblemUnionTest.cs

This file was deleted.

19 changes: 0 additions & 19 deletions 2 Sorting/2.1/SortUnionTest/Properties/AssemblyInfo.cs

This file was deleted.

Loading

0 comments on commit 41c20ac

Please sign in to comment.