Problem text and link

This commit is contained in:
Stephen Seo 2022-03-23 21:01:58 +09:00
parent 52d2015e1b
commit 916e7e07dd
2 changed files with 14 additions and 0 deletions

1
problem_link.txt Normal file
View File

@ -0,0 +1 @@
https://programmingpraxis.com/2021/12/07/cutting-fields-from-a-csv-file/

13
problem_text.txt Normal file
View File

@ -0,0 +1,13 @@
Cutting Fields From A CSV File December 7, 2021
Over at Stack Overflow, I answered a question about cutting fields from a CSV
file. Paraphrasing:
A file in CSV format has a header row containing field names followed by
record rows containing actual data. The user wants to cut fields from the CSV
file to create a new CSV file containing only the specified fields, specifying
the fields by name instead of using their ordinal position.
Your task is to write a program to cut fields from a CSV file by name. When you
are finished, you are welcome to read or run a suggested solution, or to post
your own solution or discuss the exercise in the comments below.