Skip to content

Commit

Permalink
Update count_pair_with_difference_equal_to_k.clj
Browse files Browse the repository at this point in the history
Fixes #1062
  • Loading branch information
solar05 authored Nov 17, 2023
1 parent bb050c9 commit 12b608d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
(def tags ["collections"])

(def description
{:en "Given an integer array and a positive integer k, count all distinct pairs with difference equal to k."
:ru "Дан массив целых чисел и положительное целое число k, сосчитайте все различные пары чисел, разность которых равна k."})
{:en "Given an integer array and a positive integer k, count all distinct pairs with difference equal to k. Order of numbers matters."
:ru "Дан массив целых чисел и положительное целое число k, сосчитайте все различные пары чисел, разность которых равна k. Порядок чисел важен."})

(def signature
{:input [{:argument-name "pairs" :type {:name "array" :nested {:name "integer"}}}
Expand Down

0 comments on commit 12b608d

Please sign in to comment.