“Code -Komplexitätsrechner online” Code-Antworten

Code -Komplexitätsrechner online

li = [8,3,7,2,3,9,4]
max_element = max(li)
min_element = min(li)

total = max_element - min_element
x = len(li)
for i in li:
    for j in range(x):
        if i - li[j] == total:
            print("buy price is=", li[j],"sell price is= ",i ,"the profit is ", i - li[j])
Pratipal Singh Rajput

Code -Komplexitätsrechner online

MysteryA (int n)

     {     int i,j,k;

           for i=1 to n

    {         for j=1 to n

            {c[i,j]=0;

              }

               for k=1 to n

                 c[i,j]=c[i,j]+a[i,k]*b[k,j];

            } }
Funny Ferret

Code -Komplexitätsrechner online

li = [8,3,7,2,3,9,4]
max_element = max(li)
min_element = min(li)

total = max_element - min_element
x = len(li)
for i in li:
    for j in range(x):
        if i - li[j] == total:
            print("buy price is=", li[j],"sell price is= ",i ,"the profit is ", i - li[j])
Pratipal Singh Rajput

Ähnliche Antworten wie “Code -Komplexitätsrechner online”

Fragen ähnlich wie “Code -Komplexitätsrechner online”

Weitere verwandte Antworten zu “Code -Komplexitätsrechner online” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen