We examine these weird grids and notice that they spell out programs.

The first grid specifically looks like JavaScript.

n='0x';logic='0a';l=console.log;f=String.fromCodePoint;g=01+100100-0x0;pri=(n,'t1++03f(1s"t1%10+-c%s11%2%s21.1%c"22,322+3 0+22*2+20-230/113+2', '1,t1"raz10*0s",1 "3ie',-"12s10 02", 1223&1 &~02-333*2)+logic;h=011*0xce*01;h=h*0xf+'f'.codePointAt(0);p=n+pri-0;l(f(g+h)+f(g+h+p));

After running the Javascript, we get the following output: πŸπŸ”—, indicating that the grid is a slitherlink. We solve the slitherlink by using the numbers and ignoring everything else:

n
=
'
0
x
'
;
l
o
g
i
c
=
'
0
a
'
;
l
=
c
o
n
s
o
l
e
.
l
o
g
;
f
=
S
t
r
i
n
g
.
f
r
o
m
C
o
d
e
P
o
i
n
t
;
g
=
0
1
+
1
0
0
1
0
0
-
0
x
0
;
p
r
i
=
(
n
,
'
t
1
+
+
0
3
f
(
1
s
"
t
1
%
1
0
+
-
c
%
s
1
1
%
2
%
s
2
1
.
1
%
c
"
2
2
,
3
2
2
+
3
0
+
2
2
*
2
+
2
0
-
2
3
0
/
1
1
3
+
2
'
,
'
1
,
t
1
"
r
a
z
1
0
*
0
s
"
,
1
"
3
i
e
'
,
-
"
1
2
s
1
0
0
2
"
,
1
2
2
3
&
1
&
~
0
2
-
3
3
3
*
2
)
+
l
o
g
i
c
;
h
=
0
1
1
*
0
x
c
e
*
0
1
;
h
=
h
*
0
x
f
+
'
f
'
.
c
o
d
e
P
o
i
n
t
A
t
(
0
)
;
p
=
n
+
p
r
i
-
0
;
l
(
f
(
g
+
h
)
+
f
(
g
+
h
+
p
)
)
;


This grid was hiding a C program!

printf("%c%s%s%c",32+32*2+2+1,"raz","ies", 122+-3*2);

Running the C program, we get craziest, which is half the answer.

The second grid looks like Python.

a=3;p=print ;lie=a;b=lie;sh="r=";trak= 2;x=trak;r=( "par\u2b50x"[10-7]);3;a= str(a);r=r;af=""+a+r +" \u2694x"[::-1][~6&1:]+sh;"1+lambda: ''";an=" \u2191 x-6"[23-22];af=af+an;"ha";p( af);done = 0x1

Running it gives the output 3β­βš” r=↑, indicating that it’s a star battle with 3 stars per row/column, and that we should orient the region division so that the β€˜r’ points up.

⭐
a
=
3
;
p
⭐
=
p
r
i
n
t
⭐
;
l
i
e
=
⭐
a
;
b
=
⭐
l
i
⭐
e
;
s
h
=
"
⭐
r
=
"
;
⭐
t
r
a
k
=
2
⭐
;
x
=
t
r
⭐
a
k
;
r
=
⭐
(
⭐
"
p
a
r
⭐
\
u
2
b
5
0
⭐
x
"
[
1
0
-
⭐
7
]
)
;
⭐
3
;
⭐
a
=
s
t
⭐
r
(
a
)
;
r
=
r
;
a
f
=
⭐
"
"
+
a
⭐
+
r
⭐
+
⭐
"
⭐
\
u
2
6
9
4
⭐
x
"
[
:
:
-
1
]
[
~
⭐
6
&
⭐
1
:
]
+
s
⭐
h
;
⭐
"
1
⭐
+
l
a
m
b
d
a
:
⭐
'
'
"
;
a
n
=
⭐
"
⭐
\
u
2
1
9
1
⭐
x
-
⭐
6
"
[
2
3
-
2
⭐
2
]
;
⭐
a
f
=
a
f
+
a
⭐
n
;
⭐
"
h
a
"
;
p
(
⭐
a
f
⭐
)
;
d
o
n
e
⭐
=
⭐
0
x
1


Oh, look, a JavaScript program was hidden in the grid!

a= alert;a("\x73ar"+ "\x61h"+ "\x62an" )

Running it, we get sarahban. So the answer is CRAZIEST SARAH BAN.

Notes

I don’t remember how I managed to construct such a beautiful puzzle.