Skip to content
View envomp's full-sized avatar

Highlights

  • Pro

Organizations

@TalTech-Testing @TalTech-Analytics
Block or Report

Block or report envomp

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
envomp/README.md
import java.util.Random;

public class HelloWorld {
	public static void main(String... args) {
		System.out.println(randomString(-229985452) + ' ' + randomString(-147909649));
	}

	public static String randomString(int seed) {
		Random rand = new Random(seed);
		StringBuilder sb = new StringBuilder();
		while (true) {
			int n = rand.nextInt(27);
			if (n == 0) {
				break;
			}
			sb.append((char) ('`' + n));
		}
		return sb.toString();
	}
}

Pinned

  1. TalTech-Testing/automated-testing-service TalTech-Testing/automated-testing-service Public

    Final thesis - Automated student code testing service

    Java 1

  2. TalTech-Testing/monitoring-service TalTech-Testing/monitoring-service Public

    Admin panel for automated testing service

    Vue

  3. Algorithm-Visualizer Algorithm-Visualizer Public archive

    Flutter

    Dart 7 3

  4. Lone-Player Lone-Player Public archive

    2-d game

    Java

  5. LeetCode LeetCode Public

    Exercises

    Scala

  6. Checkers-AI Checkers-AI Public archive

    MinMax in Prolog

    Prolog