lab3: add missing files, freeze the development

This commit is contained in:
dymik739 2023-05-23 09:34:05 +03:00
parent 03bbb6e4c5
commit 7094322744
2 changed files with 20 additions and 0 deletions

13
labs/3/Benchmarker.java Normal file
View File

@ -0,0 +1,13 @@
import lab3lib.Finder;
public class Benchmarker {
public static void main(String[] args) {
System.out.print("Timing object creation...");
long startTime = System.nanoTime();
Finder obj = new Finder();
long endTime = System.nanoTime();
System.out.println(" Finished!");
System.out.println("Operation took " + (endTime - startTime) + "ns");
}
}

View File

@ -0,0 +1,7 @@
import
public class Letter {
this.
public void main() {
}
}