Medium
What is the fastest language for encoding and decoding Base 64 ?
//...
var s_encoded = 0;
const start = new Date();
for (var i = 0; i < TRIES; i++) {
s_encoded += b.toString('base64').length;
}
const t_encoded = ((new Date()) - start) / 1000;
//...
Author: Vincent CotroStatus: PublishedQuestion passed 425 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Algorithme
3
What is the most used back-end language for websites?3
What is the "Metaverse" imagined by "Mark Zuckerberg"?2
In 2016, Linkedin had a large data breach and leaked 168 millions of users data including hashed password. What was the protections of those password ?2
The IT transition to the year 2000 has given rise to many concerns! Why ?1
Write a Java program that throws an exception.