Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
You can return the answer in any order.
وده الحل بتاعي
# Interview Google classSolution:def towSum(self,nums,target):for i in range(len(nums)):for j in range(i+1,len(nums)):if nums[i]+ nums[j]== target:print(f"{nums[i]} + {nums[j]} = {target}")return1print("Not Found")return0
num =Solution()
num.towSum([2,7,11,15],9)
الكود ده بيشتغل عادي علي Vscode ولكن علي LeetCode مش بيشتغل وبيظهار الخظاء ده
السؤال
Ail Ahmed
السلام عليكم
ده مسائل من LeetCode
Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
You can return the answer in any order.
وده الحل بتاعي
الكود ده بيشتغل عادي علي Vscode ولكن علي LeetCode مش بيشتغل وبيظهار الخظاء ده
3 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.