forked from Hithomelabs/DSA_sheets
8 lines
213 B
Java
8 lines
213 B
Java
package com.hithomelabs.dsa.array.best_time_to_buy_and_sell_stock;
|
|
|
|
public class Solution implements Solvable {
|
|
@Override
|
|
public int solve(int[] prices) {
|
|
// Implementation of the solution
|
|
}
|
|
} |