Another update from ingydotnet^djgoku
This commit is contained in:
parent
91df62d461
commit
948b86eafa
7604 changed files with 108452 additions and 22726 deletions
32
Task/ABC-Problem/PureBasic/abc-problem-1.purebasic
Normal file
32
Task/ABC-Problem/PureBasic/abc-problem-1.purebasic
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
EnableExplicit
|
||||
#LETTERS = "BO XK DQ CP NA GT RE TG QD FS JW HU VI AN OB ER FS LY PC ZM "
|
||||
|
||||
Procedure.s can_make_word(word.s)
|
||||
Define.s letters = #LETTERS, buffer
|
||||
Define.i index1, index2
|
||||
Define.b match
|
||||
For index1=1 To Len(word)
|
||||
index2=1 : match=#False
|
||||
Repeat
|
||||
buffer=StringField(letters,index2,Space(1))
|
||||
If FindString(buffer,Mid(word,index1,1),1,#PB_String_NoCase)
|
||||
letters=RemoveString(letters,buffer+Chr(32),0,1,1)
|
||||
match=#True
|
||||
Break
|
||||
EndIf
|
||||
index2+1
|
||||
Until index2>CountString(letters,Space(1))
|
||||
If Not match : ProcedureReturn word+#TAB$+"FALSE" : EndIf
|
||||
Next
|
||||
ProcedureReturn word+#TAB$+"TRUE"
|
||||
EndProcedure
|
||||
|
||||
OpenConsole()
|
||||
PrintN(can_make_word("a"))
|
||||
PrintN(can_make_word("BaRK"))
|
||||
PrintN(can_make_word("BOoK"))
|
||||
PrintN(can_make_word("TREAt"))
|
||||
PrintN(can_make_word("cOMMON"))
|
||||
PrintN(can_make_word("SqUAD"))
|
||||
PrintN(can_make_word("COnFUSE"))
|
||||
Input()
|
||||
Loading…
Add table
Add a link
Reference in a new issue