Linear Search in Typescript

Published on 02 October 2023 (Updated: 02 October 2023)

Welcome to the Linear Search in Typescript page! Here, you'll find the source code for this program as well as a description of how the program works.

Current Solution

const error_msg: string = "Usage: please provide a list of integers (\"1, 4, 5, 11, 12\") and the integer to find (\"11\")";
if (process.argv.length != 4) {
    console.log(error_msg);
    process.exit(1);
}

let list_str: string = process.argv[2]
let target: number = parseInt(process.argv[3]);

if (isNaN(target) || list_str.length == 0) {
    console.log(error_msg);
    process.exit(1);
}
let list: number[] = list_str.split(",").map((x: string) => parseInt(x));
let found: boolean = false;
for (let i = 0; i < list.length; i++) {
    if (list[i] == target) {
        found = true;
        break;
    }
}
console.log(found ? "true" : "false");

Linear Search in Typescript was written by:

If you see anything you'd like to change or update, please consider contributing.

How to Implement the Solution

No 'How to Implement the Solution' section available. Please consider contributing.

How to Run the Solution

No 'How to Run the Solution' section available. Please consider contributing.