From 2dc5aa10b610f4aef386f6775a3369ab91567f6b Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 12 Nov 2024 12:23:44 -0500 Subject: [PATCH] fix(post/leetcode): runtime analysis typo --- posts/algorithms/leetcode-daily.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/algorithms/leetcode-daily.html b/posts/algorithms/leetcode-daily.html index edd720d..6a4ff80 100644 --- a/posts/algorithms/leetcode-daily.html +++ b/posts/algorithms/leetcode-daily.html @@ -162,7 +162,7 @@ O(nlg(n)+mlg(m))\). An argument can be made that because queries[i],items[i][{0,1}]\(\leq10^9\), radix sort can be leveraged to achieve a time complexity of \(O(d \cdot (n + - k + m + k))\in O(9\cdot (n + m))\in O(9n+9m)\in O(9n+9m)\in + k + m + k))\in O(9\cdot (n + m))\in O(9n+9m)\in O(n+m)\).