79719765

Date: 2025-07-30 10:12:23
Score: 2
Natty:
Report link

The join will treat b as a single item and that's why the result is a nested tuple. You have to convert a and b to vectors, join them and then convert back to tuple.

a = (1,2,3) b = (4,5,6)

re = tuple(join(vector(a), vector(b)))

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