TWCP OTD (The Who Cares Puzzle Of The Day) - 24th of January, 2017
-
13 being the less frequent because I don;t like it and my girlfriend says it makes her butt look big.
New version: WinHeist Version 2.2.2 Beta
I told my psychiatrist that I was hearing voices in my head. He said you don't have a psychiatrist!If not that, then what?
-
THE MOST AND LESS FREQUENT DIGITS IN THE NUMBERS FROM 1 TO 1000 It is not about writing code - but it is possible - but some nice logical explanation... So which is the most frequent digit in the list of numbers form 1 to 1000? And the less frequent? Why? And even Google is our friend - it would be nice to not to tell him about it...
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
1
10
11
100
101
110
111
10000 == 8 1 == 13
-
If not that, then what?
11s Ok but 12 is better. Oh you mean her butt...that's a touchy subject! :)
New version: WinHeist Version 2.2.2 Beta
I told my psychiatrist that I was hearing voices in my head. He said you don't have a psychiatrist! -
Well, you've got 1-9, where all digits except 0 appear once. Then you've got 10-19, where 1 occurs 11 times, every other digit, including 0 now, once. Then you've got 20-29, where 2 occurs 11 times, etc. by 90-99, we have all digits in count except 0 which lags by 10 (every digit occurs twice in each set of 10 except 0 which occurs once, so you've got 10 sets, so 0 lags by 10. (every other digit in the set x0-x9 occurs 11 times). 100 - 109 - Now 0 makes up for a lost digit, but loses out again in the 1n0-1n9 (where 10 > n > 0) Ultimately, at 1000, 0 should still be the least frequent digit, and 1 gets a head start on everyone else. I think I thought that through properly, but my brain is still fried mapping XML to bizarre property fields in strange class relationships that someone else wrote and where all the rules are embedded in the business logic for creating said entity containers. :sigh: Marc
V.A.P.O.R.ware - Visual Assisted Programming / Organizational Representation Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
Yep, same thinking I had. Looks solid to me :-)
-
THE MOST AND LESS FREQUENT DIGITS IN THE NUMBERS FROM 1 TO 1000 It is not about writing code - but it is possible - but some nice logical explanation... So which is the most frequent digit in the list of numbers form 1 to 1000? And the less frequent? Why? And even Google is our friend - it would be nice to not to tell him about it...
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
Consider these by the length of the number we have 4 groups. 1-9 10-99 100-999 1000-1000 In the first three groups we only need to consider the first digit, the remaining digits will have an identical number of every digit 0-9, as they cover the complete range. In the final group there is only one number, so it is trivial. Group 1 adds 1 of 1-9. Group 2 adds 10 of 1-9. Group 3 adds 100 of 1-9. Group 4 adds 1 of 1 and 3 of 0. This makes 1 the most common (by 1) and 0 the least common.
-
THE MOST AND LESS FREQUENT DIGITS IN THE NUMBERS FROM 1 TO 1000 It is not about writing code - but it is possible - but some nice logical explanation... So which is the most frequent digit in the list of numbers form 1 to 1000? And the less frequent? Why? And even Google is our friend - it would be nice to not to tell him about it...
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
Ooh, I worked this out the easy way: count them... 14 1s and 9 0s. Easy!
-
Consider these by the length of the number we have 4 groups. 1-9 10-99 100-999 1000-1000 In the first three groups we only need to consider the first digit, the remaining digits will have an identical number of every digit 0-9, as they cover the complete range. In the final group there is only one number, so it is trivial. Group 1 adds 1 of 1-9. Group 2 adds 10 of 1-9. Group 3 adds 100 of 1-9. Group 4 adds 1 of 1 and 3 of 0. This makes 1 the most common (by 1) and 0 the least common.
Is fascinating how one can get the right answer even from the wrong reasoning...
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
-
Ooh, I worked this out the easy way: count them... 14 1s and 9 0s. Easy!
In the range of 1-99 there are 20 1s alone!!!
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
-
THE MOST AND LESS FREQUENT DIGITS IN THE NUMBERS FROM 1 TO 1000 It is not about writing code - but it is possible - but some nice logical explanation... So which is the most frequent digit in the list of numbers form 1 to 1000? And the less frequent? Why? And even Google is our friend - it would be nice to not to tell him about it...
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
-
THE MOST AND LESS FREQUENT DIGITS IN THE NUMBERS FROM 1 TO 1000 It is not about writing code - but it is possible - but some nice logical explanation... So which is the most frequent digit in the list of numbers form 1 to 1000? And the less frequent? Why? And even Google is our friend - it would be nice to not to tell him about it...
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
Then go on to the next one: To enter our office area, you must tap the correct four digit code on the keypad by the door. For some strange reason, the checking is implemented as pipeline: The last four digits typed must be the correct ones. So, if the correct code is 2345 and you start typing 1234 the door won't open. Then you add the 5, and the door opens. In other words: You have tested two 4-digit keystrokes by 5 keypresses. Problem 1: What is the minimal number of keypresses required to go through all 10000 possible coded? Problem 2: Describe the algorithm for generating the order of keypresses Problem 3: Prove that this is the minimal number of keypresses Problem 4: The average number of codes you have to try to find the right one is 5000. How many keypresses have you made before having tried 5000 codes? Does it depend on the order of these keypresses? (Note: I do not have the answers)
-
Looks to me that everybody is wrong. There are clearly more zeros than ones. Each byte is packed with leading zeros. The ones are big-time losers. QED. :laugh:
I would like to see how it goes on base 2... ;)
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
-
THE MOST AND LESS FREQUENT DIGITS IN THE NUMBERS FROM 1 TO 1000 It is not about writing code - but it is possible - but some nice logical explanation... So which is the most frequent digit in the list of numbers form 1 to 1000? And the less frequent? Why? And even Google is our friend - it would be nice to not to tell him about it...
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
The easy way: I made a program and the result is: 0: 192 times 1: 301 times 2...9: 300 times. So, everyone is right :)
-
I would like to see how it goes on base 2... ;)
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
-
OK, I'll be the first in. 1 is the most only because you are going from 1 to 1000. If it was 1 to 999 or 2 to 1000, there would be the same number of 1's as all other non-zero numbers. 0 is the least because numbers do not start with a 0. (except 0 which is not included).
Brent
I agree with Brent. Take all arrangements of 3-digit numbers(1000 arrangements). All digits are equally represented. Remove any leading zeroes ('0' or '00') from the list. Remove '000' from the list. We have fewer zeroes now but all other numbers are equally represented. Adding '1000' at the end will not make up the deficit. So fewer zeroes but 1 has the greatest score because of '1000' David
-
THE MOST AND LESS FREQUENT DIGITS IN THE NUMBERS FROM 1 TO 1000 It is not about writing code - but it is possible - but some nice logical explanation... So which is the most frequent digit in the list of numbers form 1 to 1000? And the less frequent? Why? And even Google is our friend - it would be nice to not to tell him about it...
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
Interesting one . . It's about two things - the Interval of integers under consideration and the fact that poor zero never gets to be the first (most significant) digit. For a range of 1 to 10^n, lucky "1" gets representation in both the first AND last, so has a count of one more than all the rest other than zero. Zero never starts an integer, so looses out greatly but does indeed benefit slightly from (n-1) representations in the last number in the series. I don't think I have ever actually replied to anything on CP - many thanks for interesting me so much as to prompt me to do so this time! Russ
A few are great. I am small. Together we are the Universe.
-
In the range of 1-99 there are 20 1s alone!!!
Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.
Not in binary ;-)