Skip to content

Commit ac668f2

Browse files
committed
Added links to all the questions for reference
1 parent 1d7f132 commit ac668f2

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

CrackingtheCodeInterview/QueueAsTwoStacks.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
1 x: Enqueue element into the end of the queue.
1111
2: Dequeue the element at the front of the queue.
1212
3: Print the element at the front of the queue.
13+
14+
Link: https://www.hackerrank.com/challenges/ctci-queue-using-two-stacks
1315
*/
1416

1517
import java.io.*;

DynamicProgramming/CoinChange.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
If you can think of a way to store the checked solutions, then
2929
this store can be used to avoid checking the same solution again
3030
and again.
31+
32+
Link: https://www.hackerrank.com/challenges/coin-change
3133
*/
3234

3335
import java.io.*;

DynamicProgramming/FibonacciModified.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
but, for those that don't (e.g., C++), you will need to be more creative
1212
in your solution to compensate for the limitations of your chosen
1313
submission language.
14+
15+
Link: https://www.hackerrank.com/challenges/fibonacci-modified
1416
*/
1517

1618
import java.io.*;

DynamicProgramming/TheMaximumSubarray.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
2. Non-contiguous (not necessarily contiguous) subarray.
66
77
Empty subarrays/subsequences should not be considered.
8+
9+
Link: https://www.hackerrank.com/challenges/maxsubarray
810
*/
911

1012
import java.io.*;

0 commit comments

Comments
 (0)