move num artists to top of js file

This commit is contained in:
marsteralex 2022-09-16 00:52:02 +02:00
parent 932003bff3
commit 59d6a8d977

View File

@ -4,6 +4,7 @@ total = 0
cardNames = []
k = 12
extra = 3
num_artists = k + extra * extra
artDict = {}
totalCorrect = 0
totalSeen = 0
@ -142,7 +143,7 @@ function createNewArtistMap() {
samples[key] = value
newTotal += value.length
i++
if (i >= k + extra * extra) {
if (i >= num_artists) {
break
}
}