mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-18 12:15:44 +01:00
MISC: Clarify input and output of Square Root coding contract (#1839)
This commit is contained in:
parent
74ede7d947
commit
d9dba2a442
@ -1865,7 +1865,8 @@ export const codingContractTypesMetadata: CodingContractType<any>[] = [
|
|||||||
name: "Square Root",
|
name: "Square Root",
|
||||||
difficulty: 5,
|
difficulty: 5,
|
||||||
desc(data: bigint): string {
|
desc(data: bigint): string {
|
||||||
return `You are given a ~200 digit BigInt. Find the square root of this number, to the nearest integer.
|
return `You are given a ~200 digit BigInt. Find the square root of this number, to the nearest integer.\n
|
||||||
|
The input is a BigInt value. The answer must be the string representing the solution's BigInt value. The trailing "n" is not part of the string.\n
|
||||||
Hint: If you are having trouble, you might consult https://en.wikipedia.org/wiki/Methods_of_computing_square_roots
|
Hint: If you are having trouble, you might consult https://en.wikipedia.org/wiki/Methods_of_computing_square_roots
|
||||||
|
|
||||||
Input number:
|
Input number:
|
||||||
|
Loading…
Reference in New Issue
Block a user