Posts by Jane Doe • 23 points
2 posts
-
1
votes3
answers106
viewsA: Find the size of the largest sequence of # in an array. JAVA
I have already managed to solve the problem, having thought a little differently: import java.util.*; import java.lang.*; public class Ex{ public static void main(String[] args){ Scanner in = new…
-
1
votes3
answers106
viewsQ: Find the size of the largest sequence of # in an array. JAVA
I’m new to Java and found this problem: Given a character array ('.' or '#'), your task is to specify the the size of the largest contiguous segment (horizontal or vertical) of characters '#' This…