Skip to content

Commit 99bf602

Browse files
author
Gonzalo Diaz
committed
[Hacker Rank] Interview Preparation Kit: Arrays: Documentation link FIXED. Documentation updated.
1 parent 5558d3a commit 99bf602

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

algorithm_exercises_csharp/src/hackerrank/interview_preparation_kit/arrays/ArraysLeftRotation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// @link Problem definition [[docs/hackerrank/projecteuler/euler001.md]]
1+
// @link Problem definition [[docs/hackerrank/interview_preparation_kit/arrays/ctci_array_left_rotation.md]]
22

33
namespace algorithm_exercises_csharp.hackerrank.interview_preparation_kit;
44

docs/hackerrank/interview_preparation_kit/arrays/ctci_array_left_rotation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
Given an array and a number, d, perform d left rotations on the array.
44

5-
- Difficulty: #easy
6-
- Category: #ProblemSolvingBasic
5+
- Difficulty: `#easy`
6+
- Category: `#ProblemSolvingBasic` `#arrays`
77

88
A left rotation operation on an array shifts each of the array's elements
99
$ 1 $ unit to the left. For example, if $ 2 $ left rotations are performed

0 commit comments

Comments
 (0)