Author

Topic: Dash Puzzle [0.35 DASH to Solver] (Read 206 times)

sr. member
Activity: 1078
Merit: 310
October 25, 2019, 05:46:11 PM
#11
Nope, I didn't have time than to take a glance and see a recursive solution.
If the 'leafs' are not in the right order (e.g. left to right), you will need to do another recursion - with different orders.

But if you don't solve it, I guess I will do it during the weekend when I'm off work.
OP or somebody else put another 0.35 and now the 'bounty' is 0.7 DASH. Worth an hour of my time Smiley

https://chainz.cryptoid.info/dash/address.dws?Xdecodek64og3suP7iAwWnWpwuTkmgpFtB.htm

I'm just starting to learn Python as a hobby and love to do it in my spare time. Anyway I'll take it as an exercise but if you will do solve it, and if you may allow, I would love to see the code and maybe learn from it. Smiley
legendary
Activity: 1512
Merit: 1011
October 25, 2019, 12:28:00 PM
#10
Nope, I didn't have time than to take a glance and see a recursive solution.
If the 'leafs' are not in the right order (e.g. left to right), you will need to do another recursion - with different orders.

But if you don't solve it, I guess I will do it during the weekend when I'm off work.
OP or somebody else put another 0.35 and now the 'bounty' is 0.7 DASH. Worth an hour of my time Smiley

https://chainz.cryptoid.info/dash/address.dws?Xdecodek64og3suP7iAwWnWpwuTkmgpFtB.htm
sr. member
Activity: 1078
Merit: 310
October 25, 2019, 10:31:32 AM
#9
I don't have time to finish it now, as I have a better-paid job to do.

Simple recursive Google search + https://stackoverflow.com/questions/4331092/finding-all-combinations-of-javascript-array-values

But be my guess and play with it Cheesy

Code:

// Rewrite console.log to save AND to file.
var fs_cons = require('fs');
var util_cons = require('util');
var log_file_cons = fs_cons.createWriteStream(__dirname + '/_DASH_Priv_Key.txt', {flags : 'w'});
var log_stdout_cons = process.stdout;

console.log = function(d = '') { //
  log_file_cons.write(util_cons.format(d) + '\r\n');
  log_stdout_cons.write(util_cons.format(d) + '\r\n');
};



// recursion
function* reccc_hash(head, ...tail) {
  let remainder = tail.length ? reccc_hash(...tail) : [[]];
  for (let r of remainder) for (let h of head) yield [h, ...r];
}

const s1  = ['L', 'k', '5', 'm', '9'];
const s2 = ['8', 'b', '8', 'a', 'm'];
const s3  = ['p', 'F', '1', 'E', 'W'];
const s4  = ['z', 'G', '0', '6', 'a'];
const s5  = ['u', 'X', '8', 'X', '4'];
const s6  = ['M', 'i', '9', '5', 'e'];
const s7  = ['M', '2', '4', 'p', 'q'];
const s8  = ['z', 'O', 'C', 'o', 'Z'];
const s9  = ['g', 'k', '2', 'C', '7'];

console.log(...reccc_hash(s1, s2, s3, s4, s5));   

// Output needs to be properly formatted and then run as

// console.log(...cartesian(s6, s7, s8, s9));   

// FInally concatenate 7qcSjq5t2ehUDzHWuN6nVWBspJ + 1st results + 2nd results >>> Import into a wallet


Great! Thanks for this idea which sounds logical but I guess I need to port this code and test it using Python which I'm now beginning to learn and could play and tinker this and see if it works! Even though I may not be the one to solve this first, I would gladly take this as a challenge to better hone myself.


Here are two tutorials on how to port it in Python:

https://www.programiz.com/python-programming/recursion

https://realpython.com/python-thinking-recursively/

Or just use the example and change parameters from numbers to string.

Great! Thank you for these resources and I really want to hone my coding skills and your example would be of great help to me. Btw, have you figured out already the answer to this puzzle?
legendary
Activity: 1512
Merit: 1011
October 22, 2019, 12:59:18 PM
#8
I can’t understand - is there a key in this puzzle? Or do I just need to substitute values and iterate over combinations?
Yep. The other half of the key is on the puzzle above. You need a generator app to decode that. Doing it manually might take you a day to decode it. I check the addresd and still no decode it.


I don't have time to finish it now, as I have a better-paid job to do.

Simple recursive Google search + https://stackoverflow.com/questions/4331092/finding-all-combinations-of-javascript-array-values

But be my guess and play with it Cheesy

Code:

// Rewrite console.log to save AND to file.
var fs_cons = require('fs');
var util_cons = require('util');
var log_file_cons = fs_cons.createWriteStream(__dirname + '/_DASH_Priv_Key.txt', {flags : 'w'});
var log_stdout_cons = process.stdout;

console.log = function(d = '') { //
  log_file_cons.write(util_cons.format(d) + '\r\n');
  log_stdout_cons.write(util_cons.format(d) + '\r\n');
};



// recursion
function* reccc_hash(head, ...tail) {
  let remainder = tail.length ? reccc_hash(...tail) : [[]];
  for (let r of remainder) for (let h of head) yield [h, ...r];
}

const s1  = ['L', 'k', '5', 'm', '9'];
const s2 = ['8', 'b', '8', 'a', 'm'];
const s3  = ['p', 'F', '1', 'E', 'W'];
const s4  = ['z', 'G', '0', '6', 'a'];
const s5  = ['u', 'X', '8', 'X', '4'];
const s6  = ['M', 'i', '9', '5', 'e'];
const s7  = ['M', '2', '4', 'p', 'q'];
const s8  = ['z', 'O', 'C', 'o', 'Z'];
const s9  = ['g', 'k', '2', 'C', '7'];

console.log(...reccc_hash(s1, s2, s3, s4, s5));   

// Output needs to be properly formatted and then run as

// console.log(...cartesian(s6, s7, s8, s9));   

// FInally concatenate 7qcSjq5t2ehUDzHWuN6nVWBspJ + 1st results + 2nd results >>> Import into a wallet


Great! Thanks for this idea which sounds logical but I guess I need to port this code and test it using Python which I'm now beginning to learn and could play and tinker this and see if it works! Even though I may not be the one to solve this first, I would gladly take this as a challenge to better hone myself.


Here are two tutorials on how to port it in Python:

https://www.programiz.com/python-programming/recursion

https://realpython.com/python-thinking-recursively/

Or just use the example and change parameters from numbers to string.
sr. member
Activity: 1078
Merit: 310
October 21, 2019, 05:31:36 PM
#7
I can’t understand - is there a key in this puzzle? Or do I just need to substitute values and iterate over combinations?
Yep. The other half of the key is on the puzzle above. You need a generator app to decode that. Doing it manually might take you a day to decode it. I check the addresd and still no decode it.


I don't have time to finish it now, as I have a better-paid job to do.

Simple recursive Google search + https://stackoverflow.com/questions/4331092/finding-all-combinations-of-javascript-array-values

But be my guess and play with it Cheesy

Code:

// Rewrite console.log to save AND to file.
var fs_cons = require('fs');
var util_cons = require('util');
var log_file_cons = fs_cons.createWriteStream(__dirname + '/_DASH_Priv_Key.txt', {flags : 'w'});
var log_stdout_cons = process.stdout;

console.log = function(d = '') { //
  log_file_cons.write(util_cons.format(d) + '\r\n');
  log_stdout_cons.write(util_cons.format(d) + '\r\n');
};



// recursion
function* reccc_hash(head, ...tail) {
  let remainder = tail.length ? reccc_hash(...tail) : [[]];
  for (let r of remainder) for (let h of head) yield [h, ...r];
}

const s1  = ['L', 'k', '5', 'm', '9'];
const s2 = ['8', 'b', '8', 'a', 'm'];
const s3  = ['p', 'F', '1', 'E', 'W'];
const s4  = ['z', 'G', '0', '6', 'a'];
const s5  = ['u', 'X', '8', 'X', '4'];
const s6  = ['M', 'i', '9', '5', 'e'];
const s7  = ['M', '2', '4', 'p', 'q'];
const s8  = ['z', 'O', 'C', 'o', 'Z'];
const s9  = ['g', 'k', '2', 'C', '7'];

console.log(...reccc_hash(s1, s2, s3, s4, s5));   

// Output needs to be properly formatted and then run as

// console.log(...cartesian(s6, s7, s8, s9));   

// FInally concatenate 7qcSjq5t2ehUDzHWuN6nVWBspJ + 1st results + 2nd results >>> Import into a wallet


Great! Thanks for this idea which sounds logical but I guess I need to port this code and test it using Python which I'm now beginning to learn and could play and tinker this and see if it works! Even though I may not be the one to solve this first, I would gladly take this as a challenge to better hone myself.
legendary
Activity: 1512
Merit: 1011
October 21, 2019, 03:47:05 PM
#6
I can’t understand - is there a key in this puzzle? Or do I just need to substitute values and iterate over combinations?
Yep. The other half of the key is on the puzzle above. You need a generator app to decode that. Doing it manually might take you a day to decode it. I check the addresd and still no decode it.


I don't have time to finish it now, as I have a better-paid job to do.

Simple recursive Google search + https://stackoverflow.com/questions/4331092/finding-all-combinations-of-javascript-array-values

But be my guess and play with it Cheesy

Code:

// Rewrite console.log to save AND to file.
var fs_cons = require('fs');
var util_cons = require('util');
var log_file_cons = fs_cons.createWriteStream(__dirname + '/_DASH_Priv_Key.txt', {flags : 'w'});
var log_stdout_cons = process.stdout;

console.log = function(d = '') { //
  log_file_cons.write(util_cons.format(d) + '\r\n');
  log_stdout_cons.write(util_cons.format(d) + '\r\n');
};



// recursion
function* reccc_hash(head, ...tail) {
  let remainder = tail.length ? reccc_hash(...tail) : [[]];
  for (let r of remainder) for (let h of head) yield [h, ...r];
}

const s1  = ['L', 'k', '5', 'm', '9'];
const s2 = ['8', 'b', '8', 'a', 'm'];
const s3  = ['p', 'F', '1', 'E', 'W'];
const s4  = ['z', 'G', '0', '6', 'a'];
const s5  = ['u', 'X', '8', 'X', '4'];
const s6  = ['M', 'i', '9', '5', 'e'];
const s7  = ['M', '2', '4', 'p', 'q'];
const s8  = ['z', 'O', 'C', 'o', 'Z'];
const s9  = ['g', 'k', '2', 'C', '7'];

console.log(...reccc_hash(s1, s2, s3, s4, s5));   

// Output needs to be properly formatted and then run as

// console.log(...cartesian(s6, s7, s8, s9));   

// FInally concatenate 7qcSjq5t2ehUDzHWuN6nVWBspJ + 1st results + 2nd results >>> Import into a wallet



copper member
Activity: 2800
Merit: 1179
Leading Crypto Sports Betting & Casino Platform
October 21, 2019, 05:55:47 AM
#5
I can’t understand - is there a key in this puzzle? Or do I just need to substitute values and iterate over combinations?
Yep. The other half of the key is on the puzzle above. You need a generator app to decode that. Doing it manually might take you a day to decode it. I check the addresd and still no decode it.
full member
Activity: 980
Merit: 109
October 21, 2019, 05:47:59 AM
#4
I can’t understand - is there a key in this puzzle? Or do I just need to substitute values and iterate over combinations?
legendary
Activity: 3668
Merit: 6382
Looking for campaign manager? Contact icopress!
October 16, 2019, 07:07:25 AM
#3
Can I get 0.35 Dash for these puzzles? Tried your instruction nothing happened. Write in detail what you need to lead and where. Would throw a screenshot

If you can solve the puzzle, you should be able to get the 0.35 DASH yourself, since the solution of the puzzle is the private key of the wallet.
No other solution is valid and if you would have had reading you would have known that it's not OP who made the puzzle.
sr. member
Activity: 854
Merit: 257
October 16, 2019, 06:58:12 AM
#2
Can I get 0.35 Dash for these puzzles? Tried your instruction nothing happened. Write in detail what you need to lead and where. Would throw a screenshot
jr. member
Activity: 149
Merit: 7
October 15, 2019, 02:25:14 PM
#1



Not Mine, Saw on Reddit:
--- Dash Decoded - Welcome To Level One ---

0.35 dash on this page, take it, it’s yours!

The key is split into two. The first part is 7qcSjq5t2ehUDzHWuN6nVWBspJ

And the second part is in the above image.

Has someone already taken it? - check the balance here:

https://chainz.cryptoid.info/dash/address.dws?Xdecodek64og3suP7iAwWnWpwuTkmgpFtB.htm

--- How To Claim ---

Go to https://paper.dash.org/

Go to “Wallet Details” and enter the private key. The corresponding public key will be Xdecodek64og3suP7iAwWnWpwuTkmgpFtB

Use a wallet (such as Dash Wallet by Hash Engineering) to sweep the private key!

Happy decoding!

#DashDecoded

Jump to: