File tree Expand file tree Collapse file tree
main/java/com/thealgorithms
test/java/com/thealgorithms/strings Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ package com .thealgorithms .dynamicprogramming ;
2+
3+ import java .util .Arrays ;
4+
15/**
26 * Author: Siddhant Swarup Mallick
37 * Github: https://github.com/siddhant2002
1216 * This program calculates the number of unique paths possible for a robot to reach the bottom-right corner
1317 * of an m x n grid using dynamic programming.
1418 */
15-
16- package com .thealgorithms .dynamicprogramming ;
17-
18- import java .util .Arrays ;
19-
2019public final class UniquePaths {
2120
2221 private UniquePaths () {
Original file line number Diff line number Diff line change 1+ package com .thealgorithms .dynamicprogramming ;
2+
13/**
24 *
35 * Author: Janmesh Singh
1113 * Use DP to return True if the pattern matches the entire text and False otherwise
1214 *
1315 */
14-
15- package com .thealgorithms .dynamicprogramming ;
16-
1716public final class WildcardMatching {
1817 private WildcardMatching () {
1918 }
Original file line number Diff line number Diff line change 1+ package com .thealgorithms .maths ;
2+
13/**
24 * A number is said to be Dudeney if the sum of the digits, is the cube root of the entered number.
35 * Example- Let the number be 512, its sum of digits is 5+1+2=8. The cube root of 512 is also 8.
46 * Since, the sum of the digits is equal to the cube root of the entered number;
57 * it is a Dudeney Number.
68 */
7- package com .thealgorithms .maths ;
8-
99public final class DudeneyNumber {
1010 private DudeneyNumber () {
1111 }
Original file line number Diff line number Diff line change 1- /**
2- * @author Md Asif Joardar
3- */
4-
51package com .thealgorithms .scheduling ;
62
73import com .thealgorithms .devutils .entities .ProcessDetails ;
117import java .util .Queue ;
128
139/**
10+ * @author Md Asif Joardar
1411 * The Round-robin scheduling algorithm is a kind of preemptive First come, First Serve CPU
1512 * Scheduling algorithm. This can be understood here -
1613 * https://www.scaler.com/topics/round-robin-scheduling-in-os/
File renamed without changes.
You can’t perform that action at this time.
0 commit comments