Quantcast
Channel: User user2023861 - Code Review Stack Exchange
Viewing all articles
Browse latest Browse all 35

Answer by user2023861 for Check if all lotto numbers are covered in input

$
0
0

Your first loop could be simplified:

while (ticketNumber != 0) {    neededNumbers[ticketNumber - 1] = true;    ticketNumber = input.nextInt();}

Arrays allow random access, so if you can map your input (a one-based ticketNumber integer) to your array indexing (zero-based), you can avoid looping through the array. I suspect you had linked-lists on your mind when developing your algorithm.


Viewing all articles
Browse latest Browse all 35

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>