We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5a46be7 + 22eeca6 commit b432551Copy full SHA for b432551
solutions/usaco-923.mdx
@@ -301,7 +301,7 @@ public final class PaintBarn {
301
public static void main(String[] args) throws IOException {
302
BufferedReader read = new BufferedReader(new FileReader("paintbarn.in"));
303
StringTokenizer initial = new StringTokenizer(read.readLine());
304
- int rectNum = Integer.parseInt(initial.nextToken()); // sounds like rectum ngl
+ int rectNum = Integer.parseInt(initial.nextToken());
305
int optimalAmt = Integer.parseInt(initial.nextToken());
306
int[][] barn = new int[WIDTH][WIDTH];
307
for (int r = 0; r < rectNum; r++) {
0 commit comments