1. Separating Paired User Data
Background
A developer has a list of user IDs and their corresponding scores grouped together as pairs.
Problem
The developer needs to perform calculations on all scores independently of the user IDs.
How to use
Paste the grouped array into the input field and run the tool.
[["User1", 85], ["User2", 92], ["User3", 78]]Outcome
The tool returns [["User1", "User2", "User3"], [85, 92, 78]], allowing the developer to isolate the score array.