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.
При этом за основу дана функция vector<int> twoSum(vector<int>& nums, int target);
Почему это решение считается ошибочным? :с
vector<int> twoSum(vector<int>& nums, int target)
{
nums.push_back(target - 1);
nums.push_back(1);
return {(int) nums.size() - 1, (int) nums.size() - 2};
}
есть ощущение, что ты массив можешь максимум посортировать, и никто не ожидает, что ты туда что-то своё будешь добавлять
ахахаха
смешно :)
но это решение не сработает для INT_MIN
Обсуждают сегодня