Skip to content

Commit 3f0bfac

Browse files
committed
Update gems and add a blogpost
1 parent 658699f commit 3f0bfac

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Gemfile.lock

+3-1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ GEM
6565
sass-listen (4.0.0)
6666
rb-fsevent (~> 0.9, >= 0.9.4)
6767
rb-inotify (~> 0.9, >= 0.9.7)
68+
wdm (0.1.1)
6869

6970
PLATFORMS
7071
ruby
@@ -79,6 +80,7 @@ DEPENDENCIES
7980
kramdown
8081
kramdown-parser-gfm
8182
rouge
83+
wdm (>= 0.1.0)
8284

8385
BUNDLED WITH
84-
2.2.11
86+
2.4.21

_posts/java-programs/2023-11-12-check-if-two-multidimensional-arrays-are-equal.md

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ To check whether two multidimensional arrays are equal or not, we can use the `
1313

1414
**Java Program**
1515

16+
{% raw %}
17+
1618
```java
1719
import java.util.Arrays;
1820
/**
@@ -39,6 +41,8 @@ public class MultidimensionalArraysEquals {
3941
}
4042
```
4143

44+
{% endraw %}
45+
4246
**Output**
4347

4448
```

0 commit comments

Comments
 (0)