The Scribblings of a
Monkey!!! 📝🐒
VuePress Tutorial 1 - Introduction
•Posted: Sep 24, 2021 •Updated: Aug 12, 2022
Welcome to our VuePress series! In this series we'll be developing the Code Monkeys Blog starting from the basics...
Reverse String
•Posted: Aug 11, 2021 •Updated: Aug 6, 2022
Write a function that reverses a string. The input string is given as an array of characters. Ex) 1 Input...
Contains Duplicate
•Posted: Aug 6, 2021 •Updated: Aug 6, 2022
Given an integer array nums, return true if any value appears at least twice, and return false if every...
Remove Duplicates from Sorted Array
•Posted: Jul 3, 2021 •Updated: Aug 6, 2022
Given an integer array nums sorted in non-decreasing order, remove the duplicates in-place such that each...
Valid Anagram
•Posted: Jul 2, 2021 •Updated: Aug 6, 2022
Given two strings s and t, return true if t is an anagram of s, and false otherwise. Ex 1) Input...