var container = "MRKU576275";
var con = container.toUpperCase();
for (i = 0; i < 10; i++) {
var n = con.substr(i, 1);
if (i < 4) {
n = "0123456789A?BCDEFGHIJK?LMNOPQRSTU?VWXYZ".indexOf(con.substr(i, 1));
};
n *= Math.pow(2, i);
sum += n;
};
sum %= 11;
sum %= 10;
return sum
var container = "MRKU576275";
var con = container.toUpperCase();
var p = [1,2,4,8,16,32,64,128,256,512];
var s = 0;
for (var n=0;n<10;n++) {
if (n<4) {
var c = con.charCodeAt(n)-55;
s+=(Math.floor(c/10.2)+c)*p[n];
} else {
s+=Number(con.charAt(n))*p[n];
};
};
var sum = s % 11 % 10;
return sum
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
wiki | |
me |
Test name | Executions per second |
---|---|
wiki | 0.0 Ops/sec |
me | 3035002.8 Ops/sec |
Overview
The provided JSON represents a JavaScript microbenchmarking test case named "Powers of two". The benchmark compares the performance of two approaches to calculate the sum of powers of 2 for each digit in a given string.
Benchmark Definition
The benchmark definition describes the problem statement:
container
as input.toUpperCase()
method.charCodeAt()
, subtracts 55, and multiplies the result by a predefined array p
(powers of 2).Number()
and multiplies it by the same powers of 2 array.The benchmark is designed to measure the performance difference between these two approaches: using string operations (toUpperCase()
, charAt()
, indexOf()
) versus numeric calculations (charCodeAt()
, multiplication).
Options Compared
Two options are compared:
Pros and Cons
Library and Special JS Features
In the benchmark definition, the following library is used:
charCodeAt()
is a built-in method in JavaScript that returns an integer representing the Unicode character code at a given index in a string.No special JavaScript features are used in this benchmark.
Alternative Approaches
Other approaches to calculate the sum of powers of 2 for each digit could include:
These alternative approaches may have different performance characteristics and trade-offs depending on the specific requirements of the benchmark.