From 154897b3edbad2d6200acf57b7524824d7d985f3 Mon Sep 17 00:00:00 2001 From: Joseph Fujimoto Date: Thu, 8 Jan 2026 22:24:23 -0800 Subject: [PATCH] Added .subtract(str) method --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7b61e79..b6f6180 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,7 @@ c['a'] += 1 # Increment count c.update("more") # Add counts from iterable c.total() # Sum of all counts c.elements() # Returns an iterator over elements repeating +c.subtract("ole") # Subtract counts from iterable (can go negative) ``` ## Deque