- Uses cellular automata to generate small caves
- Compiles on macOS Mojave using clang with no errors
- 'chce2StAlv' - Sets how dense the initial grid is with living cells.
- 'stps' - Number of times we run simulation
- 'const c' - Size of map
| package com.and.test; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class Solution { | |
| /** | |
| * Publicly exposed method, that wraps method with the actual algorithm. | |
| * This is also to conform with the rules as outlined by the coding |
| #!/bin/bash | |
| project_name= com.jenkyncorp.bestapp | |
| reinstall= | |
| # Takes the most recent .apk and .obb (If you have multiple files) | |
| OBB=$(ls -t *.obb | head -n1) | |
| APK=$(ls -t *.apk | head -n1) | |
| while [ "$1" != "" ]; do |