Posts

P
  • How to fix valorant vaN 79

    Recently, I started to play Valorant again after almost 2 years of not playing it However, I stumbled upon the VAN 79 issue while trying to play I encountered this issue after installing WSL2 when trying to set up my new workstation After quick googling, I found an article on the Riot website page https://support-valorant.riotgames.com/hc/en-us/articles/360045619633-Error-Codes-in-VALORANT…


  • Code Challenge – Armstrong Number

    A Narcissistic Number (or Armstrong Number) is a positive number which is the sum of its own digits, each raised to the power of the number of digits in a given base. In this Kata, we will restrict ourselves to decimal (base 10). For example, take 153 (3 digits), which is narcissistic: and 1652 (4 digits), which…


  • Code Challenge – Reverse String

    Write a function that takes in a string of one or more words, and returns the same string, but with all words that have five or more letters reversed (Just like the name of this Kata). Strings passed in will consist of only letters and spaces. Spaces will be included only when more than one…