Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
da poshol ti nahoy
The description says not to use encode.
This is cheating !
You didn't mention which language. But for the Lua translation, the issue with 0-padding has been corrected. The expected value should now be '02FF8C'. Other languages may still exhibit the issue.
I know this is 7 months ago but - if you're trying to change characters in a string, remember strings are immutable. Meaning you need to reinitialise it to have the edits take affect. I made the same mistake.
Are you sure you're using them correctly?
when I use toUpperCase and toLocalUpperCase function,why do they have no effect ?
a example(2,263,140)
Expected objects to be the same.
Passed in:
(string) '02FF8C'
Expected:
(string) '2FF8C'
but why the result of example(0,0,0) is '000000' not '00000'
U need to sort elements in array before you return result.
I use the function array_push(),get reslut like this:Expected: Array (0 => 'arp' 1 => 'live' 2 => 'strong')
Actual : Array (0 => 'live' 1 => 'strong' 2 => 'arp')
however,I also use array_unshift() and array_reverse() which get the same result.
how does it work?