Métaphore filée
- Couteau VS informatique (ordinateur)
- Métiers
Algo de tri
Par un dev
let a = [];
for (let i = 0; i < 100; ++i) {
a.push(Math.floor(Math.random() * 1000));
}
a.sort((x, y) => x - y);
from random import randrange
a = [randrange(1000) for _ in range(100)]
a.sort()
les maths
Informatics is a distinct scientific discipline, characterised by its own concepts, methods, body of knowledge, and open issues. It can be synthetically described as the science of automated processing of representations. It covers the foundations of computational structures, processes, artefacts and systems, as well as their software designs, their applications, and their impact on society.