Skip to content

Instantly share code, notes, and snippets.

View bfriscic's full-sized avatar
🌶️

Bernard Friščić bfriscic

🌶️
View GitHub Profile
@ubergesundheit
ubergesundheit / VIN.java
Created May 22, 2013 10:39
VIN validator/decoder
public class VIN {
//from http://introcs.cs.princeton.edu/java/31datatype/VIN.java.html
public static boolean isVinValid(String vin) {
int[] values = { 1, 2, 3, 4, 5, 6, 7, 8, 0, 1, 2, 3, 4, 5, 0, 7, 0, 9,
2, 3, 4, 5, 6, 7, 8, 9 };
int[] weights = { 8, 7, 6, 5, 4, 3, 2, 10, 0, 9, 8, 7, 6, 5, 4, 3, 2 };