Committee of Conundrums - Solution 3

By: Professor Punsley

A solution to the great Conundrum Conundrum Conundrum, a puzzle of great complexity.

			
				// Solution 3: The Conundrum Conundrum Solver 3000
				// 
				// Created by Professor Punsley, 2023
				// 
				// This script will solve the Conundrum Conundrum Conundrum in 3 easy steps:
				// 1. Initialize the conundrum array
				// 2. Iterate through the conundrum array and find the solution
				// 3. Print the solution to the console
				//
				// conundrum = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'];
				// solution = [];
				// for (i = 0; i < conundrum.length; i++) {
				// 	if (conundrum[i] === 'z') {
				// 		solution.push(conundrum[i]);
				// 	}
				// }
				// console.log(solution);
			
		

The solution is simple: just find the 'z' in the array and push it to the solution array.

You can also view Solution 4, which is a slightly more complex solution that involves the use of regular expressions.

Or, if you're feeling adventurous, try Solution 5, which uses machine learning to solve the conundrum.

Other Solutions