Upload files to "java/wordStat"

This commit is contained in:
2026-04-13 10:41:44 +03:00
parent 51898dd368
commit 8f41006963
5 changed files with 356 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/**
* @author Nikita Doschennikov (me@fymio.us)
*/
public class WordInfo {
String word;
int count;
int firstIndex;
WordInfo(String word, int count, int firstIndex) {
this.word = word;
this.count = count;
this.firstIndex = firstIndex;
}
}