CONTRACT: Addition of new "Total Number of Primes" contract (#2116)

This commit is contained in:
gmcew
2025-05-12 08:40:55 +01:00
committed by GitHub
parent 562142be9f
commit be2b5fac10
4 changed files with 89 additions and 0 deletions

View File

@@ -8786,6 +8786,7 @@ type CodingContractNameEnumType = {
EncryptionICaesarCipher: "Encryption I: Caesar Cipher";
EncryptionIIVigenereCipher: "Encryption II: Vigenère Cipher";
SquareRoot: "Square Root";
TotalPrimesInRange: "Total Number of Primes";
};
/** @public */
@@ -8820,6 +8821,7 @@ export type CodingContractSignatures = {
"Encryption I: Caesar Cipher": [[string, number], string];
"Encryption II: Vigenère Cipher": [[string, string], string];
"Square Root": [bigint, bigint, [string, string]];
"Total Number of Primes": [number[], number];
};
export type CodingContractObject = {