Interview Help
Interview Preparation
Resume
Job Search
Resources
Subscription
EN
Telegram
Login
Open menu
Interview Help
AI Assistant
Browser Extension
Interview analysis
Resources
Download
FAQ / Help
Interview Preparation
Question Bank
Interview Bank
Mock Interviews
Mentors
Resources
FAQ / Help
Job Search
Job Search Automation
Market Analysis
Jobs from Telegram
Companies
Resources
Careers
Blog
FAQ / Documentation
Telegram Blog
Telegram Support
Legal
Refund
Terms
Privacy
Right holders
Back to questions
Question Bank
Python - Developer
Question
Intern
Given an array of integers, find a non-empty subarray (continuous subsequence) with a given sum target, or say it's impossible. # find_target ([9, -6, 5, 1, 4, -2], 10) -> (2, 4) def find_target(arr: list[int], target: int) -> tuple[int, int]: pass
Mark as completed
Previous
Next