feat(content): hidden test cases

This commit is contained in:
2025-08-06 23:21:42 +01:00
parent 8544efb5bf
commit e0bf8cda01
134 changed files with 2075 additions and 0 deletions

View File

@@ -28,6 +28,12 @@ test_cases:
expected: 2
- input: { coins: [186, 419, 83, 408], amount: 6249 }
expected: 20
- input: { coins: [1, 2, 5], amount: 100 }
expected: 20
- input: { coins: [3, 7], amount: 5 }
expected: -1
- input: { coins: [1, 5, 10, 25], amount: 30 }
expected: 2
description: |
You are given an integer array `coins` representing coins of different denominations and an integer `amount` representing a total amount of money.