From 5190a3789978fd660e9d4bd5e36f62ee996792e0 Mon Sep 17 00:00:00 2001 From: "Andreas Koepf (aider)" Date: Sun, 26 Jan 2025 22:31:36 +0100 Subject: [PATCH] docs: Add WordSortingDataset to algorithmic tasks overview --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ac8940b3..07f631eb 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,8 @@ Available dataset names (which can be used with `create_dataset()`): - `CaesarCipherDataset`: Encrypt/decrypt text using Caesar cipher with configurable rotation - `LetterCountingDataset`: Count letter occurrences in text spans - `NumberFilteringDataset`: Filter numbers based on comparison with threshold -- `NumberSortingDataset`: Sort lists of numbers in ascending or descending order +- `NumberSortingDataset`: Sort lists of numbers in ascending or descending order +- `WordSortingDataset`: Sort words in ascending or descending order using ASCII/Unicode ordering - `LetterJumbleDataset`: Unscramble words that have had their letters randomly jumbled - `SentenceReorderingDataset`: Reorder sentence after words in it have been randomly shuffled - `SpellBackwardDataset`: Spell individual words backward (e.g. "sun" -> "nus")