drago18121996 (68)in #ita • 10 days ago • NoneLindergarten// // This is only a SKELETON file for the 'Kindergarten Garden' exercise. // It's been provided as a convenience to…drago18121996 (68)in #ita • 11 days ago • NoneGarden// // This is only a SKELETON file for the 'Kindergarten Garden' exercise. // It's been provided as a convenience to…drago18121996 (68)in #ita • 12 days ago • NoneAngramexport class Anagram { input : string; constructor(input: string) { this.input = input.toLowerCase(); } public…drago18121996 (68)in #ita • 15 days ago • NoneComplex informationexport class ComplexNumber { r : number; i : number; constructor(real: number, imaginary: number) { this.r =…drago18121996 (68)in #ita • 23 days ago • NoneBobusing System; using System.Text.RegularExpressions; public static class Bob { public static string…drago18121996 (68)in #ita • 25 days ago • NonePHPdeclare(strict_types=1); function steps(int $number): int{ if($number 1){ if($number % 2 ==0){ $number /= 2; }…drago18121996 (68)in #ita • 26 days ago • NoneAccumulatedeclare(strict_types=1); function accumulate(array $input, callable $accumulator): array{ $result = []; for($i=0; $idrago18121996 (68)in #ita • 27 days ago • NoneHandshakeexport const commands = (numb) => { let result = []; if(numb & 1) result.push('wink'); if(numb & 2)…drago18121996 (68)in #ita • 29 days ago • NoneGrainsexport const square = (num) => { if(num 64) throw new Error('square must be between 1 and 64'); return…drago18121996 (68)in #ita • 29 days ago • NoneComplex Numbers// // This is only a SKELETON file for the 'Complex Numbers' exercise. It's been provided as a // convenience to get…drago18121996 (68)in #ita • last month • NoneBobexport const hey = (message) => { let new_mess = message.replace(/[^a-zA-Z]/g, '').trim(); let message_trim =…drago18121996 (68)in #ita • last month • NoneSchoolclass School: def init (self): self.student ={} self.history = [] def student_exists(self, name):drago18121996 (68)in #ita • last month • NoneSolutionexport const colorCode = (color) => COLORS.indexOf(color); export const COLORS = ["black", "brown", "red"…drago18121996 (68)in #ita • last month • NoneStrings!import string letters = string.ascii_lowercase consonant = ''.join([letter for letter in letters if letter in…drago18121996 (68)in #ita • last month • NoneString inverseusing System; public static class ReverseString { public static string Reverse(string input) { char [] cArray =…drago18121996 (68)in #ita • 2 months ago • NoneLedgerusing System; using System.Collections.Generic; using System.Globalization; using System.Linq; public class…drago18121996 (68)in #ita • 2 months ago • NoneExerciseusing System; using System.Globalization; using System.Runtime.InteropServices; public enum Location{ NewYork…drago18121996 (68)in #ita • 2 months ago • NoneFootballusing System; using System.Collections.Generic; public static class PlayAnalyzer { public static string…drago18121996 (68)in #ita • 2 months ago • NoneIl nervosone tedescatodrago18121996 (68)in #ita • 2 months ago • NoneRotational Cipherusing System; public static class RotationalCipher { public static string Rotate(string text, int shiftKey){…