Skip to content

Commit 3318c6c

Browse files
committed
up
1 parent 9a3934b commit 3318c6c

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

JavaPractice/DetectCycleInaDirectedGraph/readme.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
## Detect cycle in a directed graph
2-
Given a Directed Graph with V vertices (Numbered from 0 to V-1) and E edges, check whether it contains any cycle or not.
3-
4-
[🔗Goto](https://practice.geeksforgeeks.org/problems/detect-cycle-in-a-directed-graph/1/?page=1&difficulty[]=1&status[]=unsolved&company[]=Amazon&sortBy=submissions#)
2+
Given a Directed Graph with V vertices (Numbered from 0 to V-1) and E edges, check whether it contains any cycle or not. [🔗Goto](https://practice.geeksforgeeks.org/problems/detect-cycle-in-a-directed-graph/1/?page=1&difficulty[]=1&status[]=unsolved&company[]=Amazon&sortBy=submissions#)
53

64
<details>
75
<summary>Full Code</summary>

JavaPractice/MinimumNumberOfJumps/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Minimum number of jumps
22
Given an array of N integers arr[] where each element represents the max number of steps that can be made forward from that element. Find the minimum number of jumps to reach the end of the array (starting from the first element). If an element is 0, then you cannot move through that element.
3-
**Note:** Return -1 if you can't reach the end of the array. [🔗Goto](https://practice.geeksforgeeks.org/problems/minimum-number-of-jumps-1587115620/1/?page=1&difficulty[]=1&status[]=unsolved&company[]=Amazon&sortBy=submissions#)
3+
**Note:** Return -1 if you can't reach the end of the array. [🔗Goto](https://practice.geeksforgeeks.org/problems/minimum-number-of-jumps-1587115620/1/?page=1&difficulty[]=1&status[]=unsolved&company[]=Amazon&sortBy=submissions#)
44

55
<details>
66
<summary>Full Code</summary>

0 commit comments

Comments
 (0)