53. Float32 to Int32 In Place

Medium

Z is a float32 array. Reinterpret its underlying memory as int32 in place (without allocating a new array), overwriting that memory so it holds the truncated integer value of each original float. Return the resulting int32 array.

Sign in to write and run your own code.

Implement solve(...)