Mark and Toys Discussions | Algorithms | HackerRank
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.
publicstaticintmaximumToys(List<Integer>prices,intk){// Sort the prices in ascending orderCollections.sort(prices);// Use reduce to calculate the countint[]counter=prices.stream()//// .sorted() //.reduce(newint[]{0,k},(arr,price)->{if(arr[1]>=price){// Deduct the price from the budgetarr[1]-=price;// Increment the countarr[0]++;}returnarr;},(a,b)->a);// Extract the count from the accumulatorreturncounter[0];}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Mark and Toys
You are viewing a single comment's thread. Return to all comments →