[TIL] TIL Workshop, JS Algorithm Problems
TIL
Problem
What I tried
function solution(participant, completion) {
participant.sort();
completion.sort();
for(let i = 0; i < participant.length; i++) {
if(participant[i] !== completion[i]) {
return par...
siwonlog.hashnode.dev3 min read