diff --git a/algorithm.xcodeproj/project.xcworkspace/xcuserdata/aseshshrestha.xcuserdatad/UserInterfaceState.xcuserstate b/algorithm.xcodeproj/project.xcworkspace/xcuserdata/aseshshrestha.xcuserdatad/UserInterfaceState.xcuserstate index f3a9f26..8ac1a8b 100755 Binary files a/algorithm.xcodeproj/project.xcworkspace/xcuserdata/aseshshrestha.xcuserdatad/UserInterfaceState.xcuserstate and b/algorithm.xcodeproj/project.xcworkspace/xcuserdata/aseshshrestha.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/algorithm/sorted_linked_list.h b/algorithm/sorted_linked_list.h deleted file mode 100755 index 3f5c026..0000000 --- a/algorithm/sorted_linked_list.h +++ /dev/null @@ -1,21 +0,0 @@ -// -// sorted_linked_list.h -// consoleApp_1 -// -// Created by Asesh Shrestha on 4/2/20. -// Copyright © 2020 Asesh Shrestha. All rights reserved. -// - -#ifndef sorted_linked_list_h -#define sorted_linked_list_h - -// 1: Iterate through all the linked lists to collect the items: o(n) -// 2: Store those sorted items in a list -// 3: Create a new sorted linked list: o(n) -template -void iterate_through_linked_lists(const CSingleLinkedList& linked_list) { - -} - - -#endif /* sorted_linked_list_h */