MCPcopy Create free account
hub / github.com/betomoedano/JavaScript-Coding-Interview-Questions / tandem-bicycle.js

File tandem-bicycle.js

greedy/tandem-bicycle.js:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// time O(n log n) because we need to sorted the array
2// space O(1)
3function tandemBicycle(redShirtSpeeds, blueShirtSpeeds, fastest) {
4 let totalSpeed = 0;

Callers

nothing calls this directly

Calls 1

tandemBicycleFunction · 0.70

Tested by

no test coverage detected