ABC problem: Difference between revisions

m
m (→‎JS ES6 Functional: Factored a conditional statement out of block spelling function)
Line 5,076:
 
Procedure.s can_make_word(word.s)
Define letters.s letters = #LETTERS, buffer.s
Define.i index1.i, index2.i
Define.b match.b
For index1=1 To Len(word)
index2=1 : match=#False
Line 5,104:
PrintN(can_make_word("COnFUSE"))
Input()</lang>
 
===PureBasic: Recursive===
<lang purebasic>Define.i
164

edits