I hereby claim:
- I am tcsiwula on github.
- I am tcsiwula (https://keybase.io/tcsiwula) on keybase.
- I have a public key whose fingerprint is A294 4D08 C48D E189 AD80 E587 6515 4C81 F5A2 EDF0
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
This guide is intended to provide resources for those wanting to help test Metropolis EIPs. The CPP team is currently in the middle of a migration from EthDocs to a documentation site that is more dedicated to CPP-Ethereum so the documentation on creating tests for Ethereum using testeth is scattered. Everything you will need to get started should be compiled below.
int SSTF(int start_index, int a[]) { | |
/* | |
START INITILIZATION | |
*/ | |
int distance = 0; | |
int counter_limit = 0; | |
int current_value = a[start_index]; | |
int current_index = start_index; | |
// keep track of visited locations |
Technique explained in the related blog post
A Pen by Tim Siwula on CodePen.
package lab1; | |
public class Student { | |
// Private variables | |
private final String firstName, lastName; | |
private String username; | |
private final int id; | |
private final boolean isFulltime; |
package lab1; | |
public class Student { | |
// Private variables | |
private final String firstName, lastName; | |
private String username; | |
private final int id; | |
private final boolean isFulltime; | |
// End private varibales |
package lab1; | |
public class Student { | |
private final String firstName, lastName; | |
private String username; | |
private final int id; | |
private final boolean isFulltime; | |
private void generateUsername(String username) { |