Skip to content

Commit 76344b3

Browse files
authoredApr 13, 2025··
Added tag LeetCode_75
1 parent fa8f384 commit 76344b3

File tree

76 files changed

+219
-195
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+219
-195
lines changed
 

‎README.md

+91-91

‎src/main/kotlin/g0001_0100/s0011_container_with_most_water/Solution.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package g0001_0100.s0011_container_with_most_water
22

33
// #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Array #Greedy #Two_Pointers
4-
// #Algorithm_II_Day_4_Two_Pointers #Top_Interview_150_Two_Pointers #Big_O_Time_O(n)_Space_O(1)
5-
// #2023_07_03_Time_402_ms_(78.57%)_Space_52.1_MB_(77.51%)
4+
// #LeetCode_75_Two_Pointers #Algorithm_II_Day_4_Two_Pointers #Top_Interview_150_Two_Pointers
5+
// #Big_O_Time_O(n)_Space_O(1) #2023_07_03_Time_402_ms_(78.57%)_Space_52.1_MB_(77.51%)
66

77
class Solution {
88
fun maxArea(height: IntArray): Int {

0 commit comments

Comments
 (0)
Please sign in to comment.