Icon

JKI_​1_​16

<p>Challenge 16: Grouping Data into CSV Files</p><p>Level: Easy</p><p>Description: You were asked to split a single sales CSV file into smaller ones based on</p><p>groups, named according to the group names. As an example, if the original file had</p><p>the following data:</p><p>Sales Group</p><p>100 b</p><p>200 a</p><p>300 a</p><p>You would generate two files: one named Group_a, and one named Group_b. They</p><p>would have the following structure:</p><p>Sales Group</p><p>200 a</p><p>300 a</p><p>and</p><p>Sales Group</p><p>100 b</p><p>Your solution to this task should be generic — that is, it should work for any number of</p><p>groups, and the names of the groups should not matter.</p><p>Author: Victor Palacios</p>

Nodes

Extensions

Links