Skip to main content

List Comprehensions Hackerrank Solution in Python3

x=int(input())
y=int(input())
z=int(input())
n=int(input())
print("[",end="")
for a in range(0,x+1):
for b in range(0,y+1):
for c in range (0,z+1):
if a+b+c!=n:
if a==x and b==y and c==z:
print([a,b,c],end="")
else:
print([a,b,c],end=", ")
print("]")


Comments

Popular posts from this blog

Breaking the Records Hackerrank solution in C

#include< stdio.h > int main() { int n,i,a[ 1000 ],x= 0 ,mn= 0 ; scanf( "%d" ,&n); for (i= 0 ;i<n;i++) { scanf( "%d" ,&a[i]); } int min=a[ 0 ],max=a[ 0 ]; for (i= 0 ;i<n;i++) { if (min>a[i]) { min=a[i]; mn++; } } for (i= 0 ;i<n;i++) { if (max<a[i]) { max=a[i]; x++; } } printf( "%d %d" ,x,mn); return 0 ; }