Codey and Binary Guesser

https://www.hackerrank.com/contests/codenection-2023-test/challenges/guesser/problem

Question

A number is hidden, given Codey knows that the number would be either 00 or 11. Print that hidden number!

Input Format

No input.

Constraints

The hidden number is generated randomly and it is guaranteed that the hidden number is 00 or 11 .

Output Format

Output the hidden number

Sample Inputs:

There's no inputs.


Solution - ???

This one is a fun question. More like a sanity check based question.

All you need to do is just print 0 or 1. That's it.

print("0 or 1")

Last updated