CCT: Add "Find Largest Rectangle in a Matrix" coding contract (#2519)

This commit is contained in:
Misha279-UA
2026-02-24 22:10:42 +02:00
committed by GitHub
parent 6626f0d5d1
commit c85d9cbe8c
7 changed files with 363 additions and 0 deletions

View File

@@ -9439,6 +9439,7 @@ type CodingContractNameEnumType = {
EncryptionIIVigenereCipher: "Encryption II: Vigenère Cipher";
SquareRoot: "Square Root";
TotalPrimesInRange: "Total Number of Primes";
LargestRectangleInAMatrix: "Largest Rectangle in a Matrix";
};
/** @public */
@@ -9475,6 +9476,7 @@ export type CodingContractSignatures = {
"Encryption II: Vigenère Cipher": [[string, string], string];
"Square Root": [bigint, bigint, [string, string]];
"Total Number of Primes": [number[], number];
"Largest Rectangle in a Matrix": [(1 | 0)[][], [[number, number], [number, number]]];
};
/** @public */