andreecirillo.hashnode.devChalleges - JSON Processing - C#⚙️ The Parsing Challenge Receive a JSON containing names and scores as strings. Clean the data and return only valid users (score between 0 and 100). [ {"name": " Alice ", "score": "295"}, {"na3d ago·6 min read
andreecirillo.hashnode.devCodility - OddOccurencesInArray - JavaScript🧩 OddOccurrencesInArray – Explained Line by Line The OddOccurrencesInArray problem asks to find the value that occurs an odd number of times in an array. Each element in the array appears exactly twice, except for one unpaired element. Example:A = [...Oct 14, 2025·2 min read
andreecirillo.hashnode.devCodility - CyclicRotation - JavaScript🌀 Cyclic Rotation – Explained Line by Line The CyclicRotation problem asks to rotate an array to the right K times. Each rotation moves the last element to the front. Example:A = [3, 8, 9, 7, 6], K = 3 → Result: [9, 7, 6, 3, 8] Here's the code: func...Oct 14, 2025·2 min read
andreecirillo.hashnode.devCodility - BinaryGap - JavaScript🧠 Binary Gap – Explained Line by Line The Binary Gap problem asks to find the longest sequence of zeros surrounded by ones in the binary representation of a given positive integer N. Example:N = 529 → Binary: 1000010001 → Gaps: 0000, 000 → Longest =...Oct 12, 2025·2 min read