π Pronouns: he/him
π¬ Let's talk about basketball and resilience
π Iβm currently preparing for AWS Certified SysOps Administrator Associate Certification
Let's connect on ππ»
π Pronouns: he/him
π¬ Let's talk about basketball and resilience
π Iβm currently preparing for AWS Certified SysOps Administrator Associate Certification
Let's connect on ππ»
function bomberMan(n, grid) {
// Write your code here
let r = grid.length;
let c = grid[0].length;
let sec2 = [];
const generateId = () => {
const id = String(
Date.now().toString(32) +
Math.random().toString(16)
).replace(/\./g, '');
function superDigit(n, k) {
// Write your code here
let res = 0;
function palindrome(str) {
str = str.toLowerCase();
let spaceRgx = /\s+|\W+|_/g;
str = str.replace(spaceRgx, "");
str = str.split('');
def strings_xor(s, t):
res = ""
for i in range(len(s)):
if s[i] == t[i]:
res = res +'0';
function rot13(str) {
let key = 13;
let lowerAlphabet = 'abcdefghijklmnopqrstuvwxyz'
let upperAlphabet = 'abcdefghijklmnopqrstuvwxyz'.toUpperCase();
let lowerAlphabetArr = lowerAlphabet.split('');