Skip to content

Commit aa7d626

Browse files
committed
Formatted 0042_Trapping_Rain_Water.java
1 parent 4662c79 commit aa7d626

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

Diff for: 0042_Trapping_Rain_Water.java

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
// id: 42
2-
// Name: Trapping Rain Water
3-
// link: https://leetcode.com/problems/trapping-rain-water/description/
4-
// Difficulty: Hard
1+
/*
2+
* 42. Trapping Rain Water
3+
* Problem Link: https://leetcode.com/problems/trapping-rain-water/description/
4+
* Difficulty: Hard
5+
*
6+
* Solution Created by: Muhammad Khuzaima Umair
7+
* LeetCode : https://leetcode.com/mkhuzaima/
8+
* Github : https://github.com/mkhuzaima
9+
* LinkedIn : https://www.linkedin.com/in/mkhuzaima/
10+
*/
511

612
class Solution {
713
public int trap(int[] height) {

0 commit comments

Comments
 (0)