Sha256: 59593f0c91a66116019e13232a948423e270b2139562642837df88fe1daa52fb

Contents?: true

Size: 522 Bytes

Versions: 146

Compression:

Stored size: 522 Bytes

Contents

/**
* Here is an example solution for the Isogram exercise
*/
component {

	function isIsogram( input ) {
		// Only look at alphabit chars
		var cleanedInput = input.reReplaceNoCase( '[^a-z]', '', 'all' );
		var chars = {};
		
		// Loop over characters
		cleanedInput
			.listToArray( '' )
			.each( function( char ) {
				// And mark distinct list of them
				chars[ char ] = true;
			} );
		
		// If the number of chars in the input is the same as the distinct list
		return cleanedInput.len() == chars.count();
	}
			
}

Version data entries

146 entries across 145 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.179 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.178 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.177 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.176 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.175 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.174 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.173 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.172 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.171 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.170 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.169 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.167 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.166 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.165 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.164 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.163 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.162 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.161 tracks/cfml/exercises/isogram/Solution.cfc
trackler-2.2.1.160 tracks/cfml/exercises/isogram/Solution.cfc