Can you solve this McNuggets Puzzle || Computer Programming Puzzle

  Рет қаралды 51,104

LOGICALLY YOURS

LOGICALLY YOURS

5 жыл бұрын

Verify your answer of bonus puzzle here :
mathsjavascript.free.fr/froben...
Simply type the values as 9,12,25 and you get the result as 65.
Problem statement:
At McDonald’s you can order Chicken McNuggets in boxes of 6, 9, and 20.
for instance. If you want 32 pieces, then you can buy one box of 20 and two boxes of 6.
But if you want 16, then you won't be able to buy it with any combination.
What is the highest number of McNuggests that cannot be bouhgt with any combination of these boxes?
This Puzzle is algorithm based puzzle. It also has a very interesting mathematical solution. In this video I have explained both the methods.
Algorithmic approach is used for writting computer programs.

Пікірлер: 178
@rupinjeremiah9589
@rupinjeremiah9589 3 жыл бұрын
This is actually the Frobenius number, which mathematically is the largest number for which the Frobenius equation has no solution. This equation was first developed by Sylvester in 1884. So it is a very old problem.
@rockytechz5477
@rockytechz5477 3 жыл бұрын
Nuggets are 9,12,25 The possible combinations are Since the highest no. Of nuggets in a single box is 25 So we start combinations for above 25 26= nil 27= 9+9+9 30= 9+9+12 33=9+12+12 34=9+25 36=9+9+9+9or 12+12+12 37=25+12 39=9+9+9+12 42=12+12+9+9 43=9+9+25 45=9+9+9+9+9 or 9+12+12+12 46=25+9+12 48= 12+12+12+12 49=25+12+12 50=25+25 51=9+9+9+12+12 52=25+9+9+9 54=9+9+9+9+9+9 55=25+9+9+12 57=9+9+9+9+9+12 58=25+9+12+12 59=25+25+9 60=12+12+12+12+12 61=25+12+12+12 62=25+25+12 63=9+9+9+9+9+9+9 64= 25+9+9+9+12 65=nil 66=12+12+12+12+9+9 67=25+9+9+12+12 68= 25+25+9+9 69=12+12+12+12+12+9 70=25+9+12+12+12 71=25+25+12+9 72=12+12+12+12+12+12 73=25+12+12+12+12 74=25+25+12+12 .... So on by adding 9 Any no. after 74 can be found by adding 9 in numbers 66to 74. So 65 is the highest unachievable combination.
@dantedante8837
@dantedante8837 6 ай бұрын
god i love it when you refer to us as "logical people"
@ralphschraven339
@ralphschraven339 3 жыл бұрын
Very clever. Both approaches have their own unique merit: you can solve a subset of this type of problem very quickly with number theoretical approaches. If time and space complexity is not of issue, an algorithmic approach is simple and effective. I think there's something pretty about the fact that you cycle through mod 3 using the boxes of 20 to create this kind of perfectly closed "loop" that you can use to identify the largest "unsolvable" number of nuggets. Way more satisfying than my "check a bunch of numbers" algorithm that just "works". Very nice, many thanks for these beautiful puzzles!
@alandunstan5485
@alandunstan5485 3 жыл бұрын
It all depends on the number of boxes we're allowed to get. No limit was mentioned in the video.
@bijendersinghshekhawat6842
@bijendersinghshekhawat6842 3 жыл бұрын
Infinite is the answer.
@9adam4
@9adam4 2 жыл бұрын
We're not limited in the number of boxes we can order. This problem is about which numbers can't be produced no matter how many boxes you get.
@robertefremov9380
@robertefremov9380 2 жыл бұрын
@@9adam4 does that mean that you can make any number above 43 combining the any amount of those boxes???
@9adam4
@9adam4 2 жыл бұрын
@@robertefremov9380 Yes! You can choose a number like 1,841 nuggets and there's a box combination for that.
@robertefremov9380
@robertefremov9380 2 жыл бұрын
@@9adam4 Wow! thank you
@mahesh2077
@mahesh2077 5 жыл бұрын
Cool Algorithm
@phuzo3320
@phuzo3320 4 жыл бұрын
I love ur every video .....so much useful ....
@LOGICALLYYOURS
@LOGICALLYYOURS 4 жыл бұрын
Thanks Mahima... glad to know that you found them helpful... get ready for the new puzzle.
@malahalder8534
@malahalder8534 5 жыл бұрын
Amazing
@kartikeysharma5180
@kartikeysharma5180 5 жыл бұрын
nice good job
@Crockist
@Crockist 5 жыл бұрын
I took a slightly different approach. I am aware that numbers divisible by 3 will have a digital root divisible by 3: 3, 6, or 9. Subtracting 20 from any value decreases the digital root by 2. If you have a value 41 or over, you will have the digital root of your original number in addition to at least two other digital roots from integers resulting from subtracting by 20. For example, 41, 21, and 1 have digital roots 5, 3, and 1, respectively. With these 3 numbers possible, there are a limited amount of digital root combinations, all of which contain at least one digital root divisible by 3. Overlooking the fact that satisfying the number 3 alone is impossible, I incorrectly concluded 38 as the smallest number. However, 43 is clearly an exception in my formula. I have a feeling this formula will work best with the bonus problem presented at the end of the video. I will give this a shot!
@yurenchu
@yurenchu 4 жыл бұрын
Boxes with values of 9, 12 and 25: Every multiple of 3 greater than or equal to 18 can be created either as a multiple of 9, or as 1x12 + multiple of 9, or as 2x12 + multiple of 9. Every n = 1 mod 3 greater than or equal to 43 can be created as 1x25 + "multiple of 3 greater than or equal to 18" Every n = 2 mod 3 greater than or equal to 68 can be created as 2x25 + "multiple of 3 greater than or equal to 18" ==> every number greater than or equal to 68 can be created. What about numbers less than 68? 67 = 1x25 + 2x12 + 2x9 66 = 1x12 + 6x9 = 4x12 + 2x9 65 = 2x25 + 15, which cannot be created. Conclusion: Highest non-McNugget number is 65 .
@sushantyadav7806
@sushantyadav7806 4 жыл бұрын
I given answer by algorithmic and got correct
@050138
@050138 4 жыл бұрын
I used a combined approach of your mathematical and algorithmic while solving and ended up with right answer 43.... Felit my approach was more rigorous Same logic to find 5 consecutive numbers ie if N number of nuggets can be formed by combination of the three, i.e N = 6(x) + 9(y) + 20(z) then N+1 to N+5 should be formed too by other combinations (the trick is to see how the numbers 1 to 5 can be formed in combinations of multiples of 6, 9 and 20 Eg. 1 = 30 - 9 - 20, 2 = 20 - 18, It is easy to see that with atleast 1 box of 6, 2 boxes of 9 and one box of 20, all these combinations can be generated with only additions and not subtraction terms.... Hence minimum needed is 6 + 9 + 9 + 20 = 44
@ryanpatel2001
@ryanpatel2001 3 жыл бұрын
How do you find out that you need 1 box of 6, 2 boxes of 9 and 1 of 20?
@bhavyayadav6186
@bhavyayadav6186 4 жыл бұрын
65..nice problem..
@minhcongnguyen5917
@minhcongnguyen5917 5 жыл бұрын
Well, similar to the original problems, from 9's and 12's we can make every multiple of 3 that are greater than 15, but not 15. So the answer is 25x2+15 = 65
@Krysslander
@Krysslander 5 жыл бұрын
I think I'm only hungry....
@maruthasalamoorthiviswanat153
@maruthasalamoorthiviswanat153 4 жыл бұрын
Excellent puzzle Sir. Really beautiful creation.
@abrarulhaqshaik
@abrarulhaqshaik 4 жыл бұрын
Answer for Q. at last is 65 Coders..... here's a O(n^3) python coded algorithm- ------------------------------------------------------ li=[] for i in range(100): for j in range(100): for k in range(100): li.append(i*25+j*12+k*9) print(max(set(list(range(100)))-set(li))) ------------------------------------------------------ 1. So yeah you can change the size of nugget's box in the basic operation like ex. i*20+j*9+k*6 as given in the video which also gives 43 as answer... 2. Why 100 in the ranges? You can put any number, but put it wisely as this decides the required maximum impossible nuggets number. P.S. Yes, I want more deduced algorithm in terms of time complexity!! Looking forward to it 😁😁😊.
@LOGICALLYYOURS
@LOGICALLYYOURS 4 жыл бұрын
Thanks Abrar for putting your efforts in writing this piece of code. I have never used python, but I'll definitely run this code.. also will try with various combinations.
@abrarulhaqshaik
@abrarulhaqshaik 4 жыл бұрын
@@LOGICALLYYOURS Thanks for your content too sir!! But I'm quiet not satisfied with the code, coz it takes too much time yk O(n^3), and if there were more than 3 boxes, then likewise my code would've contained those many loops which eventually again increases time complexity. Mathematically, I should still improve the code with your mentioned algorithmic method in the video. Hope it works fine. P.S. Hopefully should watch entire videos of your channel during this boredom time 😂
@fardinahsan2069
@fardinahsan2069 3 жыл бұрын
The problem with this algo is that u have to guess the range, thus if you were trying to make it for a general case, you'd be in trouble.
@abrarulhaqshaik
@abrarulhaqshaik 3 жыл бұрын
@@fardinahsan2069 yes, indeed.
@logitrikkmathematicstricks9694
@logitrikkmathematicstricks9694 3 жыл бұрын
#include #include using namespace std; int main() { int n=3,sum=100,i,j,temp,a[]={9,12,25}; int dp[sum+1]; dp[0]=0; for(i=1;i
@prathwik0
@prathwik0 5 жыл бұрын
65 We can form a series of 9 starting from 66
@leif1075
@leif1075 4 жыл бұрын
He doesnt specify if the maximum number ofnboxes you can,buy is three or not..of not the correct answer is actually infinity..
@leif1075
@leif1075 4 жыл бұрын
Exactly so the answer is NOT 43..69 AND 67 ARE ALSO IMPOSSIBLE PLEASE CORRECT THIS..65 IS NOT CORRECT EITHER..THE ANSWER IS INFINITY
@9adam4
@9adam4 4 жыл бұрын
@@leif1075 You can buy as many boxes as you want. 67 = 25 + 12 + 12 + 9 + 9
@R.a.t.t.y
@R.a.t.t.y 3 жыл бұрын
If you buy a box of 20, three boxes of 6 and three boxes of 9 nuggets, you will get 65 nuggets
@venugarg6991
@venugarg6991 3 жыл бұрын
@@somebody700 ya after 43 any no can be made from these three so ans is 43
@p.zansei3280
@p.zansei3280 4 жыл бұрын
Thank you for the amazing amazing interactive puzzle Ammar! Watching your videos helps me greatly to exercise my mind before a new semester :D I'm happy to have found the answer with the tools you introduced me to: (=65) using only a pencil, paper, and the algorithm. Thanks again!
@aculasabacca
@aculasabacca 5 жыл бұрын
not the only one that can't do it. Whew.
@mathsx5887
@mathsx5887 3 жыл бұрын
I did the mathematical one
@gandhamsanthosh388
@gandhamsanthosh388 5 жыл бұрын
How do you frame these questions??
@disguisedhell
@disguisedhell 5 жыл бұрын
This is a real life problem with mcnuggets
@chandra_955
@chandra_955 3 жыл бұрын
@@disguisedhell Lol
@sutirthmahakul2737
@sutirthmahakul2737 3 жыл бұрын
Infinity
@manik_.a
@manik_.a 4 жыл бұрын
Is that any shortcut to finding the first consecutive number
@yurenchu
@yurenchu 4 жыл бұрын
With boxes of 6, 9 and 20 McNuggets: Every even number greater than or equal to 40 can be created either as a multiple of 6, or as 1x20 + multiple of 6, or as 2x20 + multiple of 6. Every odd number greater than or equal to 49 can be created as 1x9 + "even number greater than or equal to 40". So that means that every number (even or odd) greater than or equal to 49 can be created, and hence that the highest non-McNuggets number is less than 49.
@pableraspfgpfg468
@pableraspfgpfg468 3 жыл бұрын
LCM(6,9) + LCM(6,20) - 6 - 9 - 20 = 43
@mja351
@mja351 2 жыл бұрын
The highest number of nuggets that cannot be bought is one more than the restaurant has in its freezer
@danibarack552
@danibarack552 4 жыл бұрын
The algorithmic approach is kinda brute-forcey
@nightfall37
@nightfall37 3 жыл бұрын
10 to the infinite power + 43 could not be purchased either though. The question is oddly framed.
@thokari5848
@thokari5848 2 жыл бұрын
Using boxes of 6,9, and 20, any positive integer above 43 can be formed, e.g. 10043 Nuggets can be bought in 7 boxes of 9, plus 499 boxes of 20, all the way up to infinity, which includes all numbers 10^x + 43, where x is also a positive integer, and it's easy to see that this is also a general solution, i.e. (10^x - 1) * 20 + 7 * 9.
@iyyappane7352
@iyyappane7352 5 жыл бұрын
yes well 65 is the Right answer✌
@benitto_rajf6178
@benitto_rajf6178 5 жыл бұрын
If you have the code for this problem send it
@jovansingh2134
@jovansingh2134 4 жыл бұрын
20+ 9+ 9+ 6+ 6+ 6+ 9= 65
@TJTrickster
@TJTrickster 4 жыл бұрын
@@jovansingh2134 numbers were 9 12 and 25
@avinashtamarapalli7659
@avinashtamarapalli7659 5 жыл бұрын
1st view and 1st comment
@JohnSmith-bb1cl
@JohnSmith-bb1cl Жыл бұрын
You can solve using algebra 6x+9y+20z=total nuggets simplifies to 3(2x+3y)+20z where x,y,z integer inc 0, so total is always a multiple of 3 plus multiple of 20 but 2x+3y cannot equal 1 when x and y integers inc 0 so total not achieveable is 20u+3 where u integer inc 0 , u cannot be 3 or more in this not achieveable formulae, otherwise 20u+3 is 3(20+1) which is same as first formula with z =0, x=0 , y=7, u cannot also be 4 or greater as this becomes 20+3(20+1) which is also orginal formula with z=1, x=0, y=7 same for any other value u greater than 4 so u max is 2 which means max unachieveable is 2x20+3 = 43
@suprajach6249
@suprajach6249 5 жыл бұрын
43
@destoyerx-brawlstars6847
@destoyerx-brawlstars6847 4 жыл бұрын
65
@imGool
@imGool 4 жыл бұрын
Is there a shortcut to find the set of consecutive numbers?
@pableraspfgpfg468
@pableraspfgpfg468 3 жыл бұрын
LCM(6,9) + LCM(6,20) - 6 - 9 - 20 = 43
@sabyasachirimpa
@sabyasachirimpa 5 жыл бұрын
65 is the answer, yes yes yes i got it, wow😁👏
@abdulwaquar5255
@abdulwaquar5255 4 жыл бұрын
20 + 45(multiple of 3)
@TheRandomizerYT
@TheRandomizerYT 5 жыл бұрын
My answer is.... No I cannot...
@TheRandomizerYT
@TheRandomizerYT 5 жыл бұрын
Please check out my small channel as well...
@jatin161
@jatin161 2 жыл бұрын
onn the riddle with 9 12 and 25 minium is 47
@HRO-n-SLO
@HRO-n-SLO 3 жыл бұрын
I thought it was 4, 6, and 10.
@Ryarios
@Ryarios 4 жыл бұрын
Define ‘impossible’. There are lots of large numbers that can’t be bought if nothing more than the fact that there isn’t enough money or chicken...
@yurenchu
@yurenchu 4 жыл бұрын
If there's no restriction of time then any finite number can be bought (sooner or later). (If there's not enough money or chicken today, then you may buy part right now and more next week, when there's more money or chicken.)
@aryanshrajsaxena6961
@aryanshrajsaxena6961 4 жыл бұрын
Sir what is the answer of the last problem?
@LOGICALLYYOURS
@LOGICALLYYOURS 4 жыл бұрын
Aryansh... the answer should be 65. Below is the algorithmic listing of all possible combinations. The number '65' is the highest value not available with any combination. We should list down the combinations until we get 9 consecutive available numbers (then for the next number and ahead we can simply keep on adding 9). 9,12,25 9 9 12 12 18 9,9 21 9,12 24 12,12 25 25 27 9,9,9 30 9,9,12 33 9,12,12 34 9,25 36 12,12,12 or 9,9,9,9 37 12,25 39 9,9,9,12 42 9,9,12,12 43 9,9,25 45 9,12,12,12 or 9,9,9,9,9 46 9,12,25 48 12,12,12,12 or 9,9,9,9,12 49 12,12,25 50 25,25 51 9,9,9,12,12 52 9,9,9,25 54 9,9,12,12,12 55 9,9,12,25 57 9,12,12,12,12 58 9,12,12,25 59 9,25,25 60 12,12,12,12,12 61 12,12,12,25 62 12,25,25 63 9,9,9,9,9,9,9 64 9,9,9,12,25 66 9,9,12,12,12,12 (57+9) 67 9,9,12,12,25 (58+9) 68 (59+9) 69 (60+9) 70 (61+9) 71 (62+9) 72 (63+9) 73 (64+9) 74 12,12,25,25 75 (66+9) and so on....
@abhimanyugupta9049
@abhimanyugupta9049 5 жыл бұрын
65, though it took a long time to reach this by making all the combinations. What's the shorter or optimised method of applying the algorithm ?
@venkateshv626
@venkateshv626 4 жыл бұрын
Did u really get it, how about this combination, 65=20+6+6+6+9+9+9.😂😂
@yurenchu
@yurenchu 4 жыл бұрын
It's shorter to first establish an upper bound, and then work your way down from that bound. Every multiple of 3 greater than or equal to 18 can be created either as a multiple of 9, or as 1x12 + multiple of 9, or as 2x12 + multiple of 9. Every n = 1 mod 3 greater than or equal to 43 can be created as 1x25 + "multiple of 3 greater than or equal to 18" Every n = 2 mod 3 greater than or equal to 68 can be created as 2x25 + "multiple of 3 greater than or equal to 18" ==> every number greater than or equal to 68 can be created. So the highest non-McNugget number must be less than *68* (= upper bound). 67 = 1x25 + 2x12 + 2x9 66 = 1x12 + 6x9 = 4x12 + 2x9 65 = 2x25 + 15, which cannot be created -- Bingo!
@josemaestro
@josemaestro 4 ай бұрын
59 nuggets cannot be bought by combinations of 20, 6, 9
@chillmode1881
@chillmode1881 2 жыл бұрын
What if I want 1000 mc nuggets? Now I need 500 boxes of 20.
@vishalmor6353
@vishalmor6353 4 жыл бұрын
57
@omkarkulkarni5932
@omkarkulkarni5932 3 жыл бұрын
Ans. Is 59
@cricketcoachingforchildren4446
@cricketcoachingforchildren4446 2 жыл бұрын
Classical problem.
@sirnikkel6746
@sirnikkel6746 4 жыл бұрын
Infinite?
@beardeddadbod3923
@beardeddadbod3923 5 жыл бұрын
You can buy them in 4,s aswell
@brianmagicman3556
@brianmagicman3556 5 жыл бұрын
No you can't
@beardeddadbod3923
@beardeddadbod3923 5 жыл бұрын
Happy meals
@brianmagicman3556
@brianmagicman3556 5 жыл бұрын
@@beardeddadbod3923 That's different You're not buying the actual nuggets in 4's, which is what you said
@TJTrickster
@TJTrickster 4 жыл бұрын
We are at McRonald's not McDonald's
@susmitapodder4081
@susmitapodder4081 3 жыл бұрын
Infinity or sixty
@emem2756
@emem2756 3 жыл бұрын
83? Or did I miss some assumption?
@lab483
@lab483 3 жыл бұрын
9,9,9,9,9,9,9,20
@dhiraj.govindvira
@dhiraj.govindvira 5 жыл бұрын
Given value of N and K (N>=2 , K>=1) From Range K , N + K -1 How many number you can't aachive ??? Ex . N = 3, K = 3 Range ( 3 , 5 ) So by combination of 3 , 4 , 5 You cant aachive 1 and 2 so ans is 2 ( total no. Cant aachive )
@induchandrakar6649
@induchandrakar6649 4 жыл бұрын
56
@aydenhk9937
@aydenhk9937 3 жыл бұрын
1093
@jogenwaikhom8715
@jogenwaikhom8715 5 ай бұрын
97
@drkiranmahabole1836
@drkiranmahabole1836 3 жыл бұрын
I touch ed the video caz it had nuggets written 😂😂😂😂
@talhaaman3402
@talhaaman3402 3 жыл бұрын
My solution is 41
@techwellness6142
@techwellness6142 5 жыл бұрын
Can you show if we can get 34 ? My ans is 34 , but your saying 43
@LOGICALLYYOURS
@LOGICALLYYOURS 5 жыл бұрын
Question says what's highest number can't be ordered. Now 43 is higher than 34, so you can eliminate 34.
@mohdfaizan1939
@mohdfaizan1939 5 жыл бұрын
@@LOGICALLYYOURS then what about 46 , it's not the right question
@surajjayswal8083
@surajjayswal8083 4 жыл бұрын
@@mohdfaizan1939 20+20+6
@jain.j
@jain.j 3 жыл бұрын
Over the head!
@paulobouhid6648
@paulobouhid6648 5 жыл бұрын
I can buy *43* nuggets!! At noon, I buy 6 nuggets. Later, I return to the grocery and order 49 nuggets, which I partially pay with the 6 nuggets I bought earlier. Technically, I bought *43 nuggets!!*
@yurenchu
@yurenchu 4 жыл бұрын
No, technically you bought 49 new nuggets, and paid partially with 6 old nuggets. After the transaction, you end up with 49 nuggets (not 43).
@TJTrickster
@TJTrickster 4 жыл бұрын
65 is the answer 66=6×9+12 67=25+2×12+2×9 68=2×25+2×9 69=5×9+2×12 70=25+5×9 71=2×25+9+12 72=8×9 73=25+4×12 74=2×25+2×12 I win after about 5 minutes I first thought 58 but 65 was in the proof and I couldn't prove it
@no.1littlescientist-tamil664
@no.1littlescientist-tamil664 3 жыл бұрын
Answer is 65
@allwinjoans8023
@allwinjoans8023 5 жыл бұрын
65 as a answer
@kritigoyal3262
@kritigoyal3262 5 жыл бұрын
20 +9+9+9+9+9
@allwinjoans8023
@allwinjoans8023 5 жыл бұрын
We use only 9,12,25 number boxes.....
@martinvanlierop5020
@martinvanlierop5020 5 жыл бұрын
59. 😀
@leif1075
@leif1075 4 жыл бұрын
This is unclear and inaccurate..are you limited to three boxes or not?
@dielegendenvonandor7843
@dielegendenvonandor7843 4 жыл бұрын
You are limeted to box values (6 9 20) but you can buy as many as you want
@b.bharathsai2481
@b.bharathsai2481 5 жыл бұрын
How can u obtain 77 no. Of nuggets??
@manishb7072
@manishb7072 4 жыл бұрын
5 -9, 2- 6, 1- 20
@jishnuvr6466
@jishnuvr6466 4 жыл бұрын
@@manishb7072 no.s were 9,12 and 15
@jishnuvr6466
@jishnuvr6466 4 жыл бұрын
25+25+9+9+9=77
@shivamdhiman2844
@shivamdhiman2844 5 жыл бұрын
Bhai m swiggy karlunga
@jigyasbaruah7531
@jigyasbaruah7531 5 жыл бұрын
It's 56.
@seanpribadi7888
@seanpribadi7888 5 жыл бұрын
20 + 9 + 9 + 6 + 6 + 6
@ClickBeetleTV
@ClickBeetleTV 4 жыл бұрын
@@seanpribadi7888 Or 20 + (6*6)
@arnabpersonal6729
@arnabpersonal6729 3 жыл бұрын
Question framing is a bit ambiguous
@phiefer3
@phiefer3 2 жыл бұрын
what's ambiguous about it?
@neonoir7549
@neonoir7549 4 жыл бұрын
Awnser 3 Infinete
@michaelkhouzam
@michaelkhouzam 2 жыл бұрын
This one is styoobid
@thisisnew7694
@thisisnew7694 5 жыл бұрын
65 😁
@paulobouhid6648
@paulobouhid6648 5 жыл бұрын
*20* + 5 x *9*
@brianmagicman3556
@brianmagicman3556 5 жыл бұрын
There's no such thing as McNuggests so the answer is zero (0) !!!!!!!!
@JawadMohiuddin
@JawadMohiuddin 5 жыл бұрын
www.mcdonalds.com/us/en-us/product/chicken-mcnuggets-4-piece.html
@manaalanshath5079
@manaalanshath5079 3 жыл бұрын
How could you get 17 pieces?
@dlevi67
@dlevi67 3 жыл бұрын
You can't, but it doesn't matter since 43 is more than 17.
@anujkothari2134
@anujkothari2134 4 жыл бұрын
Y 91 is not the answer
@yurenchu
@yurenchu 4 жыл бұрын
91 = = 20 + 20 + 9 + 9 + 9 + 9 + 9 + 6 = 20 + 20 + 9 + 9 + 9 + 6 + 6 + 6 + 6 = 20 + 20 + 9 + 6 + 6 + 6 + 6 + 6 + 6 + 6
@McHrozni
@McHrozni 4 жыл бұрын
The solution is easy: it's the largest finite prime number. Or infinite.
@yurenchu
@yurenchu 4 жыл бұрын
The largest finite prime number doesn't exist. And "infinite" is not a number.
@McHrozni
@McHrozni 3 жыл бұрын
@@yurenchu I know, I was trying to show how misplaced the puzzle question is..
@yurenchu
@yurenchu 3 жыл бұрын
@@McHrozni The puzzle question isn't misplaced. The correct answer is 43 (as shown in the video).
@McHrozni
@McHrozni 3 жыл бұрын
@@yurenchu the correct answer to a similar question is, at any rate.
@yurenchu
@yurenchu 3 жыл бұрын
@@McHrozni What are you talking about? The question in the video is: _At McDonald's, you can order chicken nuggets in boxes of 6, 9 and 20. What is the highest number of McNuggets that cannot be bought with any combination of these boxes?_ The correct answer is 43. There's nothing wrong with the question.
@OrenLikes
@OrenLikes 4 жыл бұрын
cannot reach 3, 6, and 15. 2*25+15=65.
@BSS_00
@BSS_00 4 жыл бұрын
The answer should be The highest prime number,comment if you agree
@abrarulhaqshaik
@abrarulhaqshaik 4 жыл бұрын
Well answer for the last Q. (65) isn't a prime so I disagree
@yurenchu
@yurenchu 4 жыл бұрын
There is no such thing as "the highest prime number".
@chillmode1881
@chillmode1881 2 жыл бұрын
The question is stupid. the real answer is infinite.
@argsahoo
@argsahoo 5 жыл бұрын
I guess it's 47
@seanpribadi7888
@seanpribadi7888 5 жыл бұрын
20 + 9 + 9 + 9
@paulobouhid6648
@paulobouhid6648 5 жыл бұрын
*20* + 3 x *9*
@riyaramesh1150
@riyaramesh1150 4 жыл бұрын
What about 48
@stalwart08
@stalwart08 4 жыл бұрын
9*4 n 6*2
@KishanKumar-hu2mm
@KishanKumar-hu2mm 4 жыл бұрын
Answer is 65 ....wow i got it 18 minutes....
@naomipasirpanjang7045
@naomipasirpanjang7045 4 жыл бұрын
Then show me how to get 63
@naomipasirpanjang7045
@naomipasirpanjang7045 4 жыл бұрын
With 6,9 and 20
@RicardoFernandez-mr5cw
@RicardoFernandez-mr5cw 4 жыл бұрын
7 * 9
@knight.2049
@knight.2049 4 жыл бұрын
9+9+9+9+9+9+9=63
@yurenchu
@yurenchu 4 жыл бұрын
63 = = 7 x *9* = 5 x *9* + 3 x *6* = 3 x *9* + 6 x *6* = 1 x *9* + 9 x *6* In other words, you can get 63 McNuggets with either seven, eight, nine or ten boxes.
@anonymouslyfamous6102
@anonymouslyfamous6102 4 жыл бұрын
65
@balajik7659
@balajik7659 4 жыл бұрын
53
@kunwarharshitshah5663
@kunwarharshitshah5663 3 жыл бұрын
65
@nruharivishwanath1102
@nruharivishwanath1102 5 жыл бұрын
57
@fascination1461
@fascination1461 5 жыл бұрын
Yes but it is not highest number I think it is 65
@paulobouhid6648
@paulobouhid6648 5 жыл бұрын
*57* = 5 x *9* + 2 x *6*
@paulobouhid6648
@paulobouhid6648 5 жыл бұрын
@@fascination1461 *65* = *20* + 5 x *9*
@santanunath3744
@santanunath3744 Жыл бұрын
What about 48
@BCSEbadulIslam
@BCSEbadulIslam 4 жыл бұрын
65
@jadenruanes1858
@jadenruanes1858 3 жыл бұрын
43
@johnkumarmalluvalasa4643
@johnkumarmalluvalasa4643 4 жыл бұрын
65
@mohitverma4909
@mohitverma4909 3 жыл бұрын
65
@ranadheerreddyguduru2766
@ranadheerreddyguduru2766 3 жыл бұрын
65
@shivanshsingh7761
@shivanshsingh7761 3 жыл бұрын
65
@josemaestro
@josemaestro 4 ай бұрын
65 = 1 * 40 + 1 * 6 + 1 * 9
@Kirubhas_Shankar
@Kirubhas_Shankar 5 жыл бұрын
65
@Kirubhas_Shankar
@Kirubhas_Shankar 5 жыл бұрын
@@chandrahasdewangan2331 We should use 12,9 and 25 NOT 20.
@chandrahasdewangan2331
@chandrahasdewangan2331 5 жыл бұрын
@@Kirubhas_Shankar Ohh sorry!! I got a bit confused!!
@iyyappane7352
@iyyappane7352 5 жыл бұрын
12+12+12+12+9=57
A Beautiful Multiplication Puzzle || Only For Genius minds
7:01
LOGICALLY YOURS
Рет қаралды 31 М.
GOOGLE Interview Question || A Probability Puzzle || Hard Logic Puzzle
13:14
버블티로 체감되는 요즘 물가
00:16
진영민yeongmin
Рет қаралды 127 МЛН
A Fun IQ Quiz for the Eccentric Genius
12:58
BRIGHT SIDE
Рет қаралды 4,3 МЛН
YAHOO Interview Puzzle || Camel and Bananas || Logic + Optimization
5:34
Google Interview Riddle - 3 Friends Bike and Walk || Logic and Math Puzzle
8:47
Towers of Hanoi: A Complete Recursive Visualization
21:13
Reducible
Рет қаралды 448 М.
Can You Solve The 4 Hats Logic Puzzle?
4:39
MindYourDecisions
Рет қаралды 736 М.
How To Solve For The Area - Viral Math Problem
5:48
MindYourDecisions
Рет қаралды 2,8 МЛН