79591695

Date: 2025-04-25 02:13:56
Score: 2
Natty:
Report link

import numpy

# Read input, split into integers, and convert to a NumPy array

arr = numpy.array(list(map(int, input().split())))

# Reshape the array into 3x3

reshaped = arr.reshape(3, 3)

# Print the reshaped array

print(reshaped)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: angelus