MCPcopy Create free account
hub / github.com/Rohit91singh9/Coding-DP-DSA / Product

Class Product

EconomyMart.java:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1//Using Priority Queues
2
3class Product {
4 Integer price;
5 String name;
6
7 Product(Integer price, String name) {
8 this.price = price;
9 this.name = name;
10 }
11}
12
13public class EconomyMart {
14 public static void main(String[] args) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected