HackerRank- Python List Comprehensions
Given three integers X, Y and Z representing the dimensions of a cuboid along with an integer N. You have to print a list of all possible coordinates given by (i, j, k) on a 3D grid where the sum of i, j, k is not equal to N. Here,
- if __name__ == '__main__':
- x = int(input())
- y = int(input())
- z = int(input())
- n = int(input())
-
- print([[a, b, c] for a in range(x + 1) for b in range(y + 1) for c in range( z + 1) if a+b+c != n ])