๐Ÿš€ BPP is now released ! ๐Ÿ† Be the best and solve every problems ๐Ÿ˜Ž Don't hesitate to suggest new problems ๐Ÿฆธโ€โ™‚๏ธ

How to play Submit a problem GitHub Icon GitHub

How to Play ? ๐ŸŽฎ

Welcome to BPP ! Hereโ€™s how you can start solving Python problems:

๐Ÿ“Œ Steps to play :

  1. Select a problem from the homepage list.
  2. Write your code in the built-in editor.
  3. Use the provided input_cases variable as input for your program.
  4. Click the Run ๐Ÿƒโ€โ™‚๏ธ button to execute your code.
  5. Check the test results to see if your solution is correct.
  6. Keep trying until all tests are passed โœ….

๐Ÿ“ฅ How to use input_cases ?

Each problem provides an input list called input_cases. Your program should process these values and print the expected result.

Example:

Suppose the problem asks you to add two numbers, and input_cases is given as:

input_cases = [2, 3]

Your code should process this input and output:

print(input_cases[0] + input_cases[1])

Expected output:

5

๐Ÿ’ก Tips: