feat(content): hidden test cases

This commit is contained in:
2025-08-06 23:21:42 +01:00
parent 89b5dd1457
commit 6bed0a6787
134 changed files with 2075 additions and 0 deletions

View File

@@ -26,6 +26,12 @@ test_cases:
expected: 0
- input: { prices: [1] }
expected: 0
- input: { prices: [2, 1, 2, 1, 0, 1, 2] }
expected: 2
- input: { prices: [3, 2, 6, 5, 0, 3] }
expected: 4
- input: { prices: [1, 2] }
expected: 1
description: |
You are given an array `prices` where `prices[i]` is the price of a given stock on the i<sup>th</sup> day.