I hereby claim:
- I am ashfn on github.
- I am ashfn (https://keybase.io/ashfn) on keybase.
- I have a public key ASDRsqXX4aL8jK4ij9HyWpxQma72LcG3-TiF-SqDvXtYZwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#include <bits/stdc++.h> | |
using namespace std; | |
// | |
// *Pass@!#4 | |
uint64_t xorshift64(uint64_t state){ | |
state ^= state << 13; |
#include <iostream> | |
#include <fstream> | |
#include <array> | |
#include <random> | |
// more specifically this will be mt19937 | |
// constant f value used for 32 but mt19937 | |
#define f 1812433253 | |
import java.util.*; | |
public class LootDecider<T> { | |
private final List<LootItem<T>> lootItems; | |
private double totalPercentage; | |
public LootDecider() { | |
lootItems = new ArrayList<>(); | |
totalPercentage = 0.0; | |
} |