{"css":"","js":"function findAllOccurrences(arr, target) {
    let a = [];
    for(let i = 0;i < arr.length;i++){
    if(arr[i] == target){
    a.push(i);
    }
    }
    return a;
}","html":"","libs":[]}