Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static Boolean isLessThanEqual(String hashVal1, String hashVal2) {
int compareVal = hashVal1.compareTo(hashVal2);
if (compareVal <= 0) {
return true;
} else {
return false;
}
}
}