mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
19 lines
331 B
Plaintext
19 lines
331 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/dummy.in
|
|
*/
|
|
|
|
function main(k: bool) -> bool {
|
|
let reverse: u32 = 0;
|
|
for i in 25..1 {
|
|
reverse += i;
|
|
}
|
|
|
|
let reverse_inclusive: u32 = 0;
|
|
for a in 25..=1 {
|
|
reverse_inclusive += a;
|
|
}
|
|
|
|
return (reverse + 1 == reverse_inclusive) && k;
|
|
} |