2D array to 1D array conversion


/ Published in: Pseudocode
Save to your folder(s)

Convert a coordinate (x,y) into the index for a 1D array. For example, the coordinate (3,1) would be at array index 8 if there are 5 columns.

Assumption: Arrays start at 0.


Copy this code and paste it in your HTML
  1. arrayPosition = (y * numberOfColumns) + x

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.