User bio
404 bio not found
Member since Apr 14, 2022
Posts:
Replies:
- For each alphabetic character, determine its zero-based index in the lowercase alphabet (a-z).
- Preserve non-alphabetic characters unchanged.
For clarify: does alphabetical characters include only the English letters a-z, A-Z, or all Unicode characters including "ªµºÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéyêëìíîïðñtóôõöøùúûüýþÿ" ?
What should be the correct result for the string "Hello World µÝ Привет Мир!" ?
Your task is to implement this encryption efficiently
What does "efficiently" mean?
The condition of the Code Golf competition has always been to write the shortest code, not the fastest (see Code Golf Index)
Certifications & Credly badges:
Vitaliy has no Certifications & Credly badges yet.
Global Masters badges:
Vitaliy has no Global Masters badges yet.
Followers:
Following:
Vitaliy has not followed anybody yet.
IRIS 2025.3.CE
ClassMethod test() [ Language = python ] { import iris ns = iris.system.Process.NameSpace() try: iris.system.Process.SetNamespace('%SYS') passenger = iris.SYS.Stats.Dashboard.Sample() print(passenger.GloRefsPerSec) finally: iris.system.Process.SetNamespace(ns) }PS: Do I need a separate python iris connection for each Namespace?