Files
prog-intro-2025/java/wordStat/WordInfo.java
me ab51c1a3dc
Some checks failed
Fast Reverse Tests / test (push) Successful in 13s
Reverse Tests / test (push) Successful in 7s
Sum Tests / test (push) Successful in 8s
Word Stat Tests / test (push) Failing after 5s
add solution for hw4:3233
2026-01-31 15:06:18 +05:00

12 lines
230 B
Java

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;
}
}