We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Hash Tables: Ice Cream Parlor
- Discussions
Hash Tables: Ice Cream Parlor
Hash Tables: Ice Cream Parlor
Sort by
recency
|
668 Discussions
|
Please Login in order to post a comment
C++ Solution
Python3
include
void findIceCream(int money, int n, int cost[]) { int i, j; for (i = 0; i < n - 1; i++) { for (j = i + 1; j < n; j++) { if (cost[i] + cost[j] == money) { printf("%d %d\n", i + 1, j + 1); // 1-based index return; } } } }
int main() { int t; scanf("%d", &t); // Number of trips
}
include
void findIceCream(int money, int n, int cost[]) { int i, j; for (i = 0; i < n - 1; i++) { for (j = i + 1; j < n; j++) { if (cost[i] + cost[j] == money) { printf("%d %d\n", i + 1, j + 1); // 1-based index return; } } } }
int main() { int t; scanf("%d", &t); // Number of trips
}