leetle

Daily challenge for 2025-07-30

211. Password Strength Checker

Write a function solve that checks if a password meets security requirements. A strong password must: contain at least 8 characters, have at least one uppercase letter, one lowercase letter, one digit, and one special character (!@#$%^&*).

Example:
Input: "MyPass123!"
Output: True

Run this challenge interactively in Python or JavaScript when the app loads.