8 lines
207 B
Java
8 lines
207 B
Java
package com.hithomelabs.dsa.array.container_with_most_water;
|
|
|
|
public class Solution implements Solvable {
|
|
@Override
|
|
public int solve(int[] height) {
|
|
// Implementation of the solution
|
|
}
|
|
} |