chromebooker
@chromebooker
School alt of a repl user
0
Slow Fibonacci SequenceA copy of my Fast Fibonacci Sequence, but without my caching algorithm to show how much cache matters.
0
0
0
0
Fast Fibonacci Sequence v2Generates the Fibonacci Sequence for the given amount of iterations and then saves to a file.
9
0
0
2
Fast Fibonacci SequenceGenerates the Fibonacci sequence of numbers for a given length in a very short amount of time
28
0
2
1
SudokuA simple commandline Sudoku puzzle generator.
13
1
1
chromebooker sorry if the compile time sucks, compiler languages like Rust are definitely not the best for this platform.
you should only have to wait through compilation once. any other time it's cached and can instantly compile1 month ago
0
World wide Chat Channel (optimized)Assembly port of World wide Chat Channel
12
0
0
0
Natural Selection SimulationSimple simulation where you kill the organisms, which reproduce after a while. Eventually, they camouflage and become small if you target the easily visible/clickable ones.
4
0
0
1
Flappy ChallengeA new challenge for Replit users!
Contribute by making Flappy Bird games with the #flappychallenge tag and commenting the links down below.
The end goal is to have a flappy game for every language supported by Replit.
53
0
1
0
Survey thingyDefine traits from words via custom surveys
Leave a comment for things
15
0
0
0
Pythagorean Triple FinderBrute-force algorithm for finding all possible Pythagorean Triples within a certain range
0
0
0
1
math thingA little algorithm I made on accident, decided to graph it and now it looks cool
10
0
1
1
Very small missing number game@ElijahSeele created a super-compact remake of a game, I made it even more compact.
Read the README.md for more info
10
6
1
ErikoXDev this seems smaller
```python
L=True
K=int
C=input
A=print
from random import randint as I
J=lambda:A('\x1b[H\x1b[2J',end='',flush=L)
while L:
try:
D=K(C('Highest num: '));E=I(1,D);F='Find missing number: ';A(F);B=0
while B<D:
B+=1
if B!=E:A(B)
G=C('Your guess: ')
while K(G)!=E:A('Wrong');G=C(F)
A('You found it!');H=C('Again? ').lower()
if H=='n'or H=='no':break
except:J();A('Error')
```4 months ago
CoderElijah You and @ErikoXDev both succeeded. Good job! Now I have to study these codes to implement these shortcuts in the future.4 months ago
1
Code TesterSimple library/demo for testing code
1
0
1
1
rust typing effecta small rust module/demo that could be useful for a variety of console-based things
2
0
1
1
Oregon JourneyMy ripoff of a ripoff of Oregon Trail made by a friend
(Doesn't really have anything to do with the original game)
26
1
1
1
simple reinforcement learning thingsuper buggy thing where the blue dots try to reach the red dot
41
0
1