75
\$\begingroup\$

This is the cop's thread of a challenge. You can view the robber's thread here

A pretty common beginner style question is to print some string, but there's a catch! You need to do it without using any of the characters in the string itself!

For this challenge, we will find out who is the best at printing X without X. There are two threads to this, a cop's thread and a robber's thread.

In the cop's thread (this thread), users will choose a language (which we will call Y) and a string (which we will call X) and write a program in language Y which takes no input, and outputs exactly X without using any of the characters in X. The cop will then post both X and Y without revealing the program they have written.

Robbers will select the cop's answers and write programs in language Y which take no input and output X. They will post these "cracks" as answers in their thread. A crack need only work, not to be the intended solution.

Once a cop's answer is one week old, so long as it has not been cracked, the cop may reveal their program and mark it as "safe". Safe answers can no longer be cracked and are eligible for scoring.

Cops will be scored by length of X in characters with smaller scores being better. Only safe answers are eligible for scoring.

Extra Rules

You may be as specific or precise in choosing your language as you wish. For example you may say your language is Python, or Python 3, Python 3.9 (pre-release), or even point to a specific implementation. Robber's solutions need only work in one implementation of the given language. So, for example, if you say Python is your language, a robber's crack is not required to work in all versions of Python, only one.

Since command line flags and repls count as different languages, if your language is one of those then you should indicate that as at least a possible option for the language. For ease of use, I ask that you assume there are no command line flags in cases where command line flags are not mentioned.

You may choose to have your output as an error. If your intended solution does output as an error, you must indicate this in your answer.

Find Uncracked Cops

<script>site = 'meta.codegolf'; postID = 5686; isAnswer = false; QUESTION_ID = 207558;</script><script src='https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js'></script><script>jQuery(function(){var u='https://api.stackexchange.com/2.2/';if(isAnswer)u+='answers/'+postID+'?order=asc&sort=creation&site='+site+'&filter=!GeEyUcJFJeRCD';else u+='questions/'+postID+'?order=asc&sort=creation&site='+site+'&filter=!GeEyUcJFJO6t)';jQuery.get(u,function(b){function d(s){return jQuery('<textarea>').html(s).text()};function r(l){return new RegExp('<pre class="snippet-code-'+l+'\\b[^>]*><code>([\\s\\S]*?)</code></pre>')};b=b.items[0].body;var j=r('js').exec(b),c=r('css').exec(b),h=r('html').exec(b);if(c!==null)jQuery('head').append(jQuery('<style>').text(d(c[1])));if (h!==null)jQuery('body').append(d(h[1]));if(j!==null)jQuery('body').append(jQuery('<script>').text(d(j[1])))})})</script>

\$\endgroup\$
28
  • 1
    \$\begingroup\$ @user I believe errors are considered output, by our standard rules. I defer to those, so I believe the answer is yes. \$\endgroup\$ Commented Jul 25, 2020 at 15:53
  • 1
    \$\begingroup\$ @SomoKRoceS You can use any characters. \$\endgroup\$ Commented Jul 25, 2020 at 21:03
  • 4
    \$\begingroup\$ @Discretelizard I am not AdHocGarfHunter, but if your program does anything with the input (other than completely ignoring it), it is almost certainly invalid. \$\endgroup\$ Commented Jul 26, 2020 at 15:09
  • 2
    \$\begingroup\$ @EthanChapman Program flags are considered different languages. I had not thought if this initially so I will update the question but I will say that in order for command line flags to be used they should be explicitly allowed, either a specific flag or flags in general (as per the language vagueness rules). \$\endgroup\$ Commented Jul 26, 2020 at 15:23
  • 1
    \$\begingroup\$ @pppery Can the snippet deal with two submissions in a single post? Or should I make two answers and link them if I have a pair of highly related challenges? \$\endgroup\$ Commented Jul 28, 2020 at 12:50

155 Answers 155

1
\$\begingroup\$

YaBASIC, Score:13 Cracked by Dingus

X: The string to crack:

0 1 2 3 4 5 6 7 8 9 A a - 

The language may be Basic, but is the solution?

Y: The language - YaBASIC:

print "Can you crack it?" 

Try it online!

\$\endgroup\$
2
  • \$\begingroup\$ Cracked. \$\endgroup\$ Commented Mar 1, 2021 at 12:50
  • \$\begingroup\$ @Dingus - OK, you got it pretty quick! That's a good solution actually. Give me a sec and I'll post a harder version for you if you're interested. \$\endgroup\$ Commented Mar 1, 2021 at 12:54
1
\$\begingroup\$

Dis, Score: 1, cracked by Dingus

{ 

I have never thought of constructing the program when I posted this.

PS. Rule clarification.

  • Output exactly a character whose codepoint is 123 in decimal integer.
  • Do not output else.
  • Then terminate the program.
  • No Dis implementation whose { command does putchar(codepoint of (a%256)) rather than putchar(codepoint of a); if your implementation is so, reguster A must be exactly 123 when { is executed. deleted as reference implementation, implemented in C, uses putchar(char) and char stores eight octets (maybe not on some machines).

Intended solution

*|||*__>*__>_||^___________________________*!**}}*! Try it online! Link to my interpreter, with comments. This uses that 123=11120t=1-11122t-11122t. To produce 1 I had to make 00100t first by 0-01020t-01120t-01120t. Then I did it > twice.

\$\endgroup\$
6
  • \$\begingroup\$ PS. I've just completed my program. \$\endgroup\$ Commented Jul 18, 2021 at 7:47
  • \$\begingroup\$ I don't follow the last bullet point: why does it matter how the { command is implemented? You say 'when { is executed', but { can't be executed in this challenge. \$\endgroup\$ Commented Jul 20, 2021 at 14:19
  • \$\begingroup\$ @Dingus; 1. Did I misread the specification? I couldn't see the specification that it outputs A modulo 256; or is it implicitly specified by reference implementation? 2. Outputting that character without using the character in your program is the point of my challenge. \$\endgroup\$ Commented Jul 20, 2021 at 22:19
  • \$\begingroup\$ I agree that the goal is to print { without using {, and that's the root of my question. If you can't use { to begin with, I don't understand the intent behind the last bullet point. Why does it matter how { behaves (mod 256 or not) if you can't use it? \$\endgroup\$ Commented Jul 21, 2021 at 2:30
  • \$\begingroup\$ @Dingus Deleted final bullet. \$\endgroup\$ Commented Jul 21, 2021 at 10:59
1
\$\begingroup\$

Javastack, score 10, Cracked by exedraj

1234567890 

Have fun ;}

My intended solution will not be posted here.

\$\endgroup\$
1
  • \$\begingroup\$ crackèd \$\endgroup\$ Commented Aug 7, 2021 at 4:14
1
\$\begingroup\$

Javastack, score 13, Cracked again by exedraj

1234567890"nq 

Have more fun ;}

To exedraj: HR couldn't modify ><> :)

\$\endgroup\$
1
  • \$\begingroup\$ Roses are red, I did this kind of cracking comment last time, this answer is cracked, so you'll have to post a new challenge for another rhyme \$\endgroup\$ Commented Aug 7, 2021 at 6:48
1
\$\begingroup\$

Javastack, score 14, Cracked by exedraj - on to round 4!

1234567890"dqw 

No add, no duplicate, no double, no random, no power - hopefully this will thoroughly bamboozle you.

Have fun!

I gave you back flatprint - you're gonna need it.

\$\endgroup\$
1
  • \$\begingroup\$ Ur a sussy baka because I cronked this \$\endgroup\$ Commented Aug 7, 2021 at 11:17
1
\$\begingroup\$

Javastack, score 15, Cracked by exedraj

1234567890"crsy 

Game on, again.

Up-to-date copy of the interpreter

\$\endgroup\$
1
  • \$\begingroup\$ yesn't \$\endgroup\$ Commented Aug 8, 2021 at 0:32
1
\$\begingroup\$

Javastack, score 16, ingeniously cracked by exedraj for the eighth time

1234567890gbsort 

You thought the last one was hard...

Up-to-date copy of the interpreter

\$\endgroup\$
1
  • \$\begingroup\$ dah, you got me, I just can't do it...is what I'd being saying if this wasn't already cracked ;p \$\endgroup\$ Commented Aug 8, 2021 at 3:03
1
\$\begingroup\$

Javastack, score 1, Anticlimactically cracked by exedraj

a 

So simply complex...

Up-to-date copy of the interpreter

I forgot how many ways JS has to get a NaN.

\$\endgroup\$
1
  • \$\begingroup\$ wow. that was anticlimatic \$\endgroup\$ Commented Aug 8, 2021 at 11:30
1
\$\begingroup\$

Javastack, score 8, round 11, Cracked by exedraj

dfhjkmuv 

Probably the last one, unless an unintended crack is found.

Up-to-date copy of the interpreter, with ES2020 stuff removed

\$\endgroup\$
1
1
\$\begingroup\$

Perl 5, score: 38, safe.

No modules.

"#'$&;)+!,-./%07*245@6|89<>31:?\]^_`}~ 

I think this is still an easy problem.

Hint

  • Try making integers with allowed characters.
  • Then pass them to some functions.
  • Finally concatenate them with something.

Solution

There can be some solutions; one is print chr length for qw x XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX x. Try it online! How to generate the solution

\$\endgroup\$
1
\$\begingroup\$

Vyxal O, score 51, Cracked by lyxal

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C 

Only slightly evil :}

\$\endgroup\$
1
1
\$\begingroup\$

Vyxal O, score 57

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C!¬⇧İN⇩ 

Take 2.

\$\endgroup\$
1
  • \$\begingroup\$ haha no \$\endgroup\$ Commented Sep 25, 2021 at 12:45
1
\$\begingroup\$

Vyxal O, score 59, Cracked by lyxal

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C!¬⇧İN⇩Ż÷ 

Third time's the charm...

\$\endgroup\$
1
  • \$\begingroup\$ got'em \$\endgroup\$ Commented Sep 25, 2021 at 23:22
1
\$\begingroup\$

Vyxal O, score 63, Cracked by lyxal

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C!¬⇧İN⇩Ż÷«»`; 

One more time...

\$\endgroup\$
1
  • \$\begingroup\$ cracked \$\endgroup\$ Commented Sep 26, 2021 at 1:31
1
\$\begingroup\$

Vyxal O, score 76

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C!¬⇧İN⇩Ż÷«»`;¥£¾¼⅛%→←"ẋ¤ȦF 

This is difficult...

\$\endgroup\$
1
1
\$\begingroup\$

Vyxal O, score 72, Cracked by lyxal

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C!¬⇧İN⇩Ż÷«»`;¥£¾¼⅛%→←" 

One more time...

\$\endgroup\$
1
1
\$\begingroup\$

Vyxal O, score 81, Cracked by lyxal

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C!¬⇧İN⇩Ż÷«»`;¥£¾¼⅛%→←"ẋ¤ȦFȧ⌐m⊍g 

This is difficult...

\$\endgroup\$
1
1
\$\begingroup\$

Vyxal O, score 90, Cracked by lyxal

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C!¬⇧İN⇩Ż÷«»`;¥£¾¼⅛%→←"ẋ¤ȦFȧ⌐m⊍g≬\ṡ∷‡⁽⟨|⟩ 

This is difficult...

\$\endgroup\$
1
1
\$\begingroup\$

Vyxal O, score 105, Cracked by lyxal

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C!¬⇧İN⇩Ż÷«»`;¥£¾¼⅛%→←"ẋ¤ȦFȧ⌐m⊍g≬\ṡ∷‡⁽⟨|⟩‟„$∇_yǏṘRq꘍₍₌Π⁺ 

Just when you thought it wasn't hard enough already...

\$\endgroup\$
1
1
\$\begingroup\$

Vyxal O, score 125, Cracked by lyxal

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C!¬⇧İN⇩Ż÷«»`;¥£¾¼⅛%→←"ẋ¤ȦFȧ⌐m⊍g≬\ṡ∷‡⁽⟨|⟩‟„$∇_yǏṘRq꘍₍₌Π⁺ʀ↑↓G↲↳⋏⋎Ṅ⁋ð×‛√²⌈⌊:ḊD 

The last one, for now.

\$\endgroup\$
1
1
\$\begingroup\$

Vyxal, score 159, cracked by Aaron

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C!¬⇧İN⇩Ż÷«»`;¥£¾¼⅛%→←"ẋ¤ȦFȧ⌐m⊍g≬\ṡ∷‡⁽⟨|⟩‟„$∇_yǏRq꘍₍₌Π⁺βτʀʁɾɽ¨żẏ?¹⁰²ǔǓǒǑǐǎꜝ₂₃₅&ẇŀl↑↓∴∵O¢ṙṗṖ¦†AVG↲↳⋏⋎Ṅ⁋×λ√⌈⌊:ḊD 

My turn.

\$\endgroup\$
1
  • \$\begingroup\$ ez \$\endgroup\$ Commented Sep 27, 2021 at 18:14
1
\$\begingroup\$

Vyxal, score 220, cracked by EmanresuA

,₴…‹›⟇+*/-d↵EǍ½ƒɖ1234567890ø∆e₈₇∞₆₄JpiẎȯhtḢṪḣṫ¡Þ₀₁C!¬⇧İN⇩Ż÷«»`;¥£¾¼⅛%→←"ẋ¤ȦFȧ⌐m⊍g≬\ṡ∷‡⁽⟨|⟩‟„$∇_yǏRq꘍₍₌Π⁺βτʀʁɾɽ¨żẏ?¹⁰²ǔǓǒǑǐǎꜝ₂₃₅&ẇŀl↑↓∴∵O¢ṙṗṖ¦†AVG↲↳⋏⋎Ṅ⁋×λ√⌈⌊:ḊDabcjnsvwxzBHIKMQSTUWXYZ)}]([{<>ḂĊḞĠĿṀȮṠẆẊ℅@°•߀↔æƈ ¯±≠⁼≥≤=ḃ∩∪ 

More.

\$\endgroup\$
1
1
\$\begingroup\$

Vyxal D, score 233, cracked by aaroneous Miller

ḟṙIcKġ₴…‹›+*/-d↵Ǎ½ƒɖø∆₈₇∞₆₄JiẎȯht42069ḢṪḣṫ¡Þ₀₁C!¬⇧İNeVERgȮṄnaGḭ⟇ėyOU⊍p⇩Ż÷«»⌐m≬\ṡ∷‡⁽⟨|⟩‟„$∇_Ǐq꘍₍₌Π⁺βτʀʁɾɽ¨żẏ?¹⁰²ǔǓǒǑǐǎꜝ₂₃₅&ẇŀl↑↓∴∵¢`;¥£¾F¼⅛%→←"ẋ¤Ḋε€ṗṖ¦†ḃL¶ðZṘ↲↳⋏⋎⁋×λ√⌈⌊:Dbjwxz,BHMQSTXY)}]([{<>ḂĊḞĿṀṠẆẊ℅@°•ß↔æƈ§≈µ¯±≠⁼≥≤=∩s∪ĠṁȦ'ċḋṅ13578ȧ 

lol

\$\endgroup\$
1
  • \$\begingroup\$ lolgetcrak'd \$\endgroup\$ Commented Oct 6, 2021 at 17:58
1
\$\begingroup\$

Vyxal D, score 239, cracked by Aaron

ḟṙIcKġ₴…‹›+*/-d↵Ǎ½ƒɖø∆₈₇∞₆₄JiẎȯht42069ḢṪḣṫ¡Þ₀₁C!¬⇧İNeVERgȮṄnaGḭ⟇ėyOU⊍p⇩Ż÷«»⌐m≬\ṡ∷‡⁽⟨|⟩‟„$∇_Ǐq꘍₍₌Π⁺βτʀʁɾɽ¨żẏ?¹⁰²ǔǓǒǑǐǎꜝ₂₃₅&ẇŀl↑↓∴∵¢`;¥£¾F¼⅛%→←"ẋ¤Ḋε€ṗṖ¦†ḃL¶ðZṘ↲↳⋏⋎⁋×λ√⌈⌊:Dbjwxz,BHMQSTXY)}]([{<>ḂĊḞĿṀṠẆẊ℅@°•ß↔æƈ§≈µ¯±≠⁼≥≤=∩s∪ĠṁȦ'ċḋṅ13578ȧ∧⟑∨^rA 

No logic. No range. No Any.

\$\endgroup\$
1
  • \$\begingroup\$ No problem. \$\endgroup\$ Commented Oct 7, 2021 at 15:08
1
\$\begingroup\$

Vyxal D, score 244, cracked by Aaroneous

ḟṙIcKġ₴…‹›+*/-d↵Ǎ½ƒɖø∆₈₇∞₆₄JiẎȯht42069ḢṪḣṫ¡Þ₀₁C!¬⇧İNeVERgȮṄnaGḭ⟇ėyOU⊍p⇩Ż÷«»⌐m≬\ṡ∷‡⁽⟨|⟩‟„$∇_Ǐq꘍₍₌Π⁺βτʀʁɾɽ¨żẏ?¹⁰²ǔǓǒǑǐǎꜝ₂₃₅&ẇŀl↑↓∴∵¢`;¥£¾F¼⅛%→←"ẋ¤Ḋε€ṗṖ¦†ḃL¶ðZṘ↲↳⋏⋎⁋×λ√⌈⌊:Dbjwxz,BHMQSTXY)}]([{<>ḂĊḞĿṀṠẆẊ℅@°•ß↔æƈ§≈µ¯±≠⁼≥≤=∩s∪ĠṁȦ'ċḋṅ13578ȧ∧⟑∨^rA□f.∑W 

It's so sad that the last answer died of sigma.

\$\endgroup\$
1
  • \$\begingroup\$ No problem. \$\endgroup\$ Commented Oct 8, 2021 at 19:00
1
\$\begingroup\$

Vyxal so, score 248, cracked by EmanresuA

 !"#$%&'()*+,-./023456789:;<=>?@ABCDEFGHIJKLNOQRSTUVXYZ[\]^_`abcdefghijlmnpqrtuvwxyz{|}~¡¢£¤¥¦§¨«¬¯°±²µ¶¹»¼½¾×Þßæð÷øĊċėĠġİĿŀŻżƈƒƛǍǎǏǐǑǒǓǔȦȧȮȯɖɽɾʀʁΠβελτḂḃḊḋḞḟḢḣḭṀṁṄṅṖṗṘṙṠṡṪṫẆẇẊẋẎẏ‛„‟†‡•…‹›⁋⁰⁺⁼⁽₀₁₂₃₄₅₆₇₈₌₍€₴℅⅛←↑→↓↔↲↳↵⇧⇩∆∇∑√∞∧∨∩∪∴∵∷≈≠≤≥≬⊍⋎⋏⌈⌊⌐□⟇⟑⟨⟩꘍ꜝ 

The final challenge.

\$\endgroup\$
1
  • \$\begingroup\$ Cracker'sd \$\endgroup\$ Commented Oct 12, 2021 at 1:37
1
\$\begingroup\$

Vyxal so, score 249, cracked by aaroneous

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLNOQRSTUVXYZ[\]^_`abcdefghijlmnpqrtuvwxyz{|}~¡¢£¤¥¦§¨«¬¯°±²µ¶¹»¼½¾×Þßæð÷øĊċėĠġİĿŀŻżƈƒƛǍǎǏǐǑǒǓǔȦȧȮȯɖɽɾʀʁΠβελτḂḃḊḋḞḟḢḣḭṀṁṄṅṖṗṘṙṠṡṪṫẆẇẊẋẎẏ‛„‟†‡•…‹›⁋⁰⁺⁼⁽₀₁₂₃₄₅₆₇₈₌₍€₴℅⅛←↑→↓↔↲↳↵⇧⇩∆∇∑√∞∧∨∩∪∴∵∷≈≠≤≥≬⊍⋎⋏⌈⌊⌐□⟇⟑⟨⟩꘍ꜝ 

We partake in a mild amount of tomfoolery.

\$\endgroup\$
1
1
\$\begingroup\$

Vyxal so, score 249, fricking gosh dang cracked by aaron

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUXYZ[\]^_`abcdefghijmnpoqrtuvwxyz{|}~¡¢£¤¥¦§¨«¬¯°±²µ¶¹»¼½¾×Þßæð÷øĊċėĠġİĿŀŻżƈƒƛǍǎǏǐǑǒǓǔȦȧȮȯɖɽɾʀʁΠβελτḂḃḊḋḞḟḢḣḭṀṁṄṅṖṗṘṙṠṡṪṫẆẇẊẋẎẏ‛„‟†‡•…‹›⁋⁰⁺⁼⁽₀₁₂₃₄₅₇₈₌₍€₴℅⅛←↑→↓↔↲↳↵⇧⇩∆∇∑√∞∧∨∩∪∴∵∷≈≠≤≥≬⊍⋎⋏⌈⌊⌐□⟇⟑⟨⟩꘍ꜝ 

Commit utter frick.

\$\endgroup\$
1
  • \$\begingroup\$ I have commited [UTTER FRICK] : here \$\endgroup\$ Commented Oct 14, 2021 at 21:07
1
\$\begingroup\$

Brainfuck

Level: baby

Should be pretty straight forward (literally), but I think it's still interesting

,-<>[] 
Why I think it's interesting:

The fact that you can print any string with only two different characters in brainfuck is quite interesting in my opinion

\$\endgroup\$
1
  • \$\begingroup\$ cracked here :) \$\endgroup\$ Commented Jun 21, 2022 at 15:36
1
\$\begingroup\$

!@#$%^&*()_+, Score: 2

^+
\$\endgroup\$
1
  • \$\begingroup\$ Cracked \$\endgroup\$ Commented Feb 1, 2022 at 23:05

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.