“suma” Kod odpowiedzi

suma

class Solution:
  def twoSum(self, nums: List[int], target: int) -> List[int]:
    numToIndex = {}

    for i, num in enumerate(nums):
      if target - num in numToIndex:
        return numToIndex[target - num], i
      numToIndex[num] = i
Moji

suma

#include <stdio.h>
 
int main()
  { 
     int a,b,soma;
    scanf("%d %d", &a,&b );
    soma = a+b;
    printf("SOMA = %d\n",soma);
    return 0;
    
 
    
    
}
Fahmida Sadia

Odpowiedzi podobne do “suma”

Pytania podobne do “suma”

Więcej pokrewnych odpowiedzi na “suma” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu