As zac, I search for 'answer' word, and so on.
Challenges like this is so hard for me. English isn´t my maternal language. This affect the intuition to perceive the underlying text.

Code: Select all
<script src="jquery.min.1.4.3.js"></script>
<script>
$(document).ready( function() {
$('.up').click( function(event) {
var parent = $(this).parent();
var clss = $(parent).find("span").attr("class");
change_chars(clss, 1);
return false;
});
$('.down').click( function(event) {
var parent = $(this).parent();
var clss = $(parent).find("span").attr("class");
change_chars(clss, -1);
return false;
});
function change_chars(cls, number) {
var obj = $("." + cls);
// 65 = A
// 90 == Z
//console.log("obj " + obj);
var char = obj.html();
if(char > 90 || char < 65) return false;
//console.log("char " + char);
var char_code = char.charCodeAt(0) + number;
if(char_code > 90) char_code = 65;
else if(char_code < 65) char_code = 90;
obj.html(String.fromCharCode(char_code));
$('span').css("background", "#ccc");
obj.css("background", "#999");
}
function move_all(number) {
var cls_array = new Array("A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z");
for( var i = 0 ; i < 26 ; i+= 1) {
change_chars(cls_array[i], number);
}
}
$('#all_u').append("<a href='#'>all up</a>");
$('#all_d').append("<a href='#'>all down</a>");
$('#all_u a').click(function() { move_all(1) });
$('#all_d a').click(function() { move_all(-1) });
$('span').click(function() {
var cls = $(this).attr("class");
$("." + cls).css("background", "#999");
});
});
</script>
<style>
* { outline: none; }
body { padding: 0; margin: 0; padding-top: 5px; background: #8181F7; background: #6B8E23; }
td { text-align: center; }
span { display: block; background: #ccc; width: 20px; font-size: 20px; }
.hl { background: border: 1px solid red; }
a { display: block; text-decoration: none; background: #000; color: #fff; }
a.up { font-weight: bold; }
table { margin: 10px 0 10px 120px;}
tr { vertical-align: middle;}
#all_u a, #all_d a { padding: 10px 0; text-align: center; }
</style>
<?php
$coded = "ISS NVVK DIPXYWA PIT AVSUY QIAOP PWZEHVNWIEDZ. CDYT ZVM LOTK HDY AVSMHOVT HV HDOA HYFH, ZVM COSS QY IQSY HV NYH HDY ITACYW, CDOPD OA IKMGQWIHY";
echo "<div id='all_u'></div>";
echo "<table><tr>";
for($i = 0; $i < strlen($coded); $i++) {
if($coded[$i] != " ") {
$up = ($coded[$i] != ',' && $coded[$i] != '.') ? "<a class='up' href='#'>^</a>" : "";
$down = ($coded[$i] != ',' && $coded[$i] != '.') ? "<a class='down' href='#'>v</a>" : "";
echo "
<td>
$up
<span class='$coded[$i]'>$coded[$i]</span>
$down
</td>";
}
else {
if($r_count > 3) {
echo "</tr></table><table><tr>";
$r_count = 1;
} else {
echo "<td> | </td>";
}
$r_count++;
}
}
echo "</tr></table>";
echo "<div id='all_d'></div>";
?>
Code: Select all
$ grep -E '^.(.)(.)(.)...\1.\3.\2$' /usr/share/dict/words
archimorphic
cryptography
fictionistic
interconnect
intervenient
manipulation
minimifidian
panification
sanification
semiquietism
tachygraphic
tangantangan
Code: Select all
#include <set>
#include <vector>
#include <cstdio>
#include <string>
#include <fstream>
#include <cstring>
#include <algorithm>
using namespace std;
string str = "IKMGQWIHY";
int id[32];
set<string> dict;
int main() {
ifstream fin("part-of-speech.txt");
string str;
while (fin >> str) {
for (int i=0; i < (int) str.size(); ++i)
if (str[i] >= 'A' && str[i] <= 'Z')
str[i] += 32;
dict.insert(str);
}
printf("read total %d entries\n", (int)dict.size());
FILE *out = fopen("res", "w");
for (int mask=1220700; mask < (1 << 26); ++mask) {
if (__builtin_popcount(mask) != 8) continue;
if (mask % 100 == 0) printf("%d ", mask); // progress
vector<char> cur; cur.clear();
int am = 0;
for (int i=0; i < 26; ++i)
if (mask & (1 << i)) {
cur.push_back(i+'a');
if (i == 0 || i == 4 || i == 8 || i == 15 || i == 21) // vowels
am ++;
}
if (am < 2) continue;
do {
string now; now.clear();
for (int i=0; i < 6; ++i)
now += cur[i];
now += cur[0];
now += cur[6];
now += cur[7];
if (dict.find(now) != dict.end()) {
//printf("found %s\n", now.c_str());
//fprintf(out, "found %s\n", now.c_str());
string ans = "firefox http://www.hacker.org/challenge/chal.php?answer=" + now + "\\&id=21\\&go=Submit";
system(ans.c_str());
system("sleep 30");
}
} while (next_permutation(cur.begin(), cur.end()));
}
fin.close();
return 0;
}
Code: Select all
def cipher = 'ISS NVVK DIPXYWA PIT AVSUY QIAOP PWZEHVNWIEDZ. CDYT ZVM LOTK HDY AVSMHOVT HV HDOA HYFH, ZVM COSS QY IQSY HV NYH HDY ITACYW, CDOPD OA IKMGQWIHY.'
def dic = [
' ': ' ',
'O': 'I',
'A': 'S',
'H': 'T',
'D': 'H',
'Y': 'E',
'I': 'A',
'T': 'N',
'C': 'W',
'W': 'R',
'P': 'C',
'N': 'G',
'V': 'O',
'X': 'K',
'K': 'D',
'Q': 'B',
'S': 'L',
'U': 'V',
'Z': 'Y',
'E': 'P',
'M': 'U',
'L': 'F',
'F': 'X',
]
println cipher
for(index in 0..<cipher.size()) {
print dic[cipher[index]]?:'.'
}
I just looked for the word "answer"Andr3w wrote:how did you solve the challenge ?
I don't think that its solvable manually like I tried first time ...
did you wrote own scripts ?
if yes in which language ? and could you post it eventually ? i would be really interested in how to solve such a program