Problem set
Coding problems
Choose from the assigned problems below. For this MVP, Python submissions are graded immediately in the browser and saved locally on this device.
Assigned work
Problems
Hangman Function Assignment
Write the required Hangman functions and globals exactly as specified: initialize_game, is_valid_guess, display_word, process_guess, is_game_over, and get_result_message. For this MVP, grading runs in the browser and the API records the result.
Visible tests
0
Hidden tests
7
Runtime
Python 3.11
Number Pyramid
Read one integer and print a number pyramid. For input 3, print three rows containing 1, then 2 2, then 3 3 3.
Visible tests
1
Hidden tests
0
Runtime
Python 3.11
Stack Digit-Sum Filter
Use stack operations to remove numbers with the sum of digits being divisible by 6 or 7 but not both 6 and 7.
Visible tests
0
Hidden tests
8
Runtime
Python 3.11