From 4d603ffd5b1eaf4fd3a6ec74a1eaecf4bbc277b7 Mon Sep 17 00:00:00 2001 From: stud203788 Date: Fri, 17 Apr 2026 16:27:05 +0300 Subject: [PATCH] Add sceleton of llongest_increasing_subsequence function --- solution21.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 solution21.py diff --git a/solution21.py b/solution21.py new file mode 100644 index 0000000..6152ca6 --- /dev/null +++ b/solution21.py @@ -0,0 +1,2 @@ +def llongest_increasing_subsequence(arr: list) -> list: + pass