div body #java-to-python {
font-size: max(blue, 20rem, min(red, calc(yellow + 200%)));
}
#include<stdio.h>
int stack[10000000]={0};
int top=-1;
void push(int c)
{
stack[++top]=c;
}
void pop()
{
stack[top--]=0;
}
int main()
{
int N,max=0;
int order=1;
scanf("%d",&N);
int arr[N];
for(int i=0;i<N;i++)
{
scanf("%d",&arr[i]);
if(max<arr[i])
max=arr[i];
}
for(int i=0;i<N;i++)
{
while(top!=-1 && stack[top]==order)
{
order++;
pop();
}
if(arr[i]==order)
{
order++;
}
else
push(arr[i]);
}
while(top!=-1 && stack[top]==order)
{
order++;
pop();
}
if(order==max+1)
printf("Happy");
else
printf("Sad");
}
public class testint
{
public static void main(String[] args)
{
boolean contain= false;
int valeurATrouver=5;
int ints[] ={1,4,5};
for(int i=0;i<ints.length;i++)
{
if(ints[i]==valeurATrouver)
{
contain=true;
}
}
if(contain){System.out.println("La valeur "+valeurATrouver+" est comprise dans le tableau");}
else{System.out.println("La valeur "+valeurATrouver+" n'est pas comprise dans le tableau");}
}
}
def SeatingStudents(arr):
K = arr[0]
occupied = arr[1:]
rows = int(K/2)
seats = []
x = 0
for i in range(rows):
seats.append([])
for j in range(2):
if((x+1) in occupied):
full_seat = True
else:
full_seat = False
seats[i].append(str(full_seat))
x+=1
seating = 0
for i in range(rows-1):
if((seats[i][0] == str(False)) and (seats[i][1] == str(False))):
seating+=1
if((seats[i][0] == str(False)) and (seats[i+1][0] == str(False))):
seating+=1
if((seats[i][1] == str(False)) and (seats[i + 1][1] == str(False))):
seating+=1
if((seats[rows - 1][0] == str(False)) and (seats[rows - 1][1] == str(False))):
seating+=1
return seating
print(SeatingStudents([12, 2, 6, 7, 11]))
hrs = input("Enter Hours:")
h = float(hrs)
rph=float(input("Enter rate per hours:"))
if hrs>40:
print (40*rph +(h-40)*rph*1.5)
else:
print(h*rph)
n = 200
for i in range(1,n+1):
a = [int(j) for j in str(i)]
b = sum(a)
if b == 9 and a == sorted(a) and len(a)==len(set(a)):
print(i)
for i in range(2,len(array)):
import http
import ssl
from urllib.parse import urlparse
import requests
clientCrt = "<SSL files path>/GDLAPPSPublicCertificate.cer"
clientKey = "<SSL files path>/GDLAPPSPrivateCertificateKey.key"
url = "https://gdlapps.naturesweet.com/ws/simple/getDailyQualityYield"
request_url="/ws/simple/getDailyQualityYield"
method="GET"
headers = {'Content-type': 'application/json'}
body={}
context = ssl.SSLContext()
context.load_cert_chain(certfile=clientCrt,keyfile=clientKey)
connection = http.client.HTTPSConnection(urlparse(url).hostname, port=443, context=context)
connection.request(method=method, url=url,headers=headers,body=body)
response = connection.getresponse()
print(response.status, response.reason)
data = response.read()
print(data)