diff --git a/C#/Datastructures/LinkedList.cs b/C#/Datastructures/LinkedList.cs index 8053a94..bbd2190 100644 --- a/C#/Datastructures/LinkedList.cs +++ b/C#/Datastructures/LinkedList.cs @@ -25,11 +25,7 @@ namespace C_.Datastructures LinkedList list; list = list1; - if (list == null || list.Count == 0) - { - //If list 2 is the only list present - return list2; - } + if (list == null || list.Count == 0) return list2; //Find end of list and append fist item of next list if (list2 == null || list.Count == 0) return list;