go to post Alena Krasinskiene · Feb 1, 2024 @Evgeny Shvarov Evgeny, please add points to Health Harbout team for IPM also.
go to post Alena Krasinskiene · Feb 1, 2024 Hello @Evgeny Shvarov ! I comleted IRIS For Health Instruqt Survey. Please add points to Health Harbout team for this criteria
go to post Alena Krasinskiene · Oct 30, 2023 Class codeGolf.ChineseZodiac { ClassMethod Calendar(y As %Integer) As %String { Set startYear = 1924 Set animals = "Rat,Ox,Tiger,Rabbit,Dragon,Snake,Horse,Goat,Monkey,Rooster,Dog,Pig" Set elements = "Wood,Fire,Earth,Metal,Water" Set diff = y - startYear If diff < 0 Quit "Invalid Year" Set animalIndex = (diff + 12) % 12 Set elementIndex = (diff / 2) % 5 Set animal = $List(animals, animalIndex + 1) Set element = $List(elements, elementIndex + 1) Quit element_" "_animal } }