diff --git a/Swift/Algorithms/binary_search.swift b/Swift/Algorithms/Searching-Algorithms/binary_search.swift similarity index 99% rename from Swift/Algorithms/binary_search.swift rename to Swift/Algorithms/Searching-Algorithms/binary_search.swift index 9e38cf67..0c16cae8 100644 --- a/Swift/Algorithms/binary_search.swift +++ b/Swift/Algorithms/Searching-Algorithms/binary_search.swift @@ -27,4 +27,4 @@ if let index = binarySearch(in: numbers, for: value) { print("Found \(value) at index \(index)") } else { print("Did not find \(value)") -} \ No newline at end of file +}