From 3e8ac681c533a780787071215918470a9450a0da Mon Sep 17 00:00:00 2001
From: Martin Mares <mj@ucw.cz>
Date: Wed, 15 May 2019 23:13:21 +0200
Subject: [PATCH] Range tree: polished task description

---
 12-range_tree/task.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/12-range_tree/task.md b/12-range_tree/task.md
index 8f0f064..24206ed 100644
--- a/12-range_tree/task.md
+++ b/12-range_tree/task.md
@@ -1,14 +1,14 @@
-You are given an implementation of a splay tree which associates every numeric
-key with a numeric value. The splay tree provides `lookup`, `insert`, and `remove`
+You are given an implementation of a Splay tree which associates every numeric
+key with a numeric value. The Splay tree provides `lookup`, `insert`, and `remove`
 operations.
 
-Your goal is to modify the splay tree to support range queries in amortized
-logarithmic time. The operation you need to implement takes an range on the
-input and should return the sum of values of the elements in the given range.
+Your goal is to modify the Splay tree to support range queries in amortized
+logarithmic time. The operation you need to implement takes a range of the
+keys and it should return the sum of values of the elements in the given range.
 
 As usual, you should submit only the `range_tree.{h,py}` file.
 
-## Optional: Range updates (for 5 points)
+## Optional: Range updates (for extra 5 points)
 
 If you also implement an operation
 ```
-- 
GitLab