mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 14:28:36 +02:00
CONTRACT: Addition of new "Total Number of Primes" contract (#2116)
This commit is contained in:
2
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
2
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user