From c1347e087cc630cb0f2262583110091eacb14f50 Mon Sep 17 00:00:00 2001 From: stud203788 Date: Thu, 16 Apr 2026 21:24:30 +0300 Subject: [PATCH] Add sceleton of intersection_of_sorted function --- solution18.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 solution18.py diff --git a/solution18.py b/solution18.py new file mode 100644 index 0000000..a7688ea --- /dev/null +++ b/solution18.py @@ -0,0 +1,2 @@ +def intersection_of_sorted(a: list, b: list) -> list: + pass \ No newline at end of file