Skip to content

Instantly share code, notes, and snippets.

@PetbobXD
PetbobXD / 10224010_rand_walk_nd.ipynb
Created October 16, 2025 15:11
10224010_rand_walk_nd.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@PetbobXD
PetbobXD / 10224010_rand_walk_2d.ipynb
Created October 16, 2025 15:10
10224010_rand_walk_2d.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@PetbobXD
PetbobXD / 10224010_rand_walk_1d.ipynb
Created October 16, 2025 15:09
10224010_rand_walk_1d.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@PetbobXD
PetbobXD / List of random numbers
Created September 24, 2025 23:12
Tugas PGDA. Peter Raphael Gunawan/10224010
#2. randint()
import random as rnd
for i in range(100):
print(rnd.randint(0, 1000), end=',')
print()
rnd.seed(1)
for i in range(10):
print(rnd.randint(2, 6), end=',')