Skip to content
View roniceyemeli's full-sized avatar
🏁
🏁

Highlights

  • Pro

Block or report roniceyemeli

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
roniceyemeli/readme.md

Aloha πŸ‘‹, I'm Ronice

πŸ˜„ Pronouns: he/him

πŸ’¬ Let's talk about basketball and resilience

πŸ”­ I’m currently preparing for AWS Certified SysOps Administrator Associate Certification

GitHub Streak

Let's connect on πŸ‘‡πŸ»

Pinned Loading

  1. Bomber Game challenge Bomber Game challenge
    1
    function bomberMan(n, grid) {
    2
        // Write your code here
    3
    let r = grid.length;
    4
    let c = grid[0].length;
    5
    let sec2 = [];
  2. id-generator.js id-generator.js
    1
    const generateId = () => {
    2
      const id = String(
    3
      Date.now().toString(32) +
    4
        Math.random().toString(16)
    5
    ).replace(/\./g, '');
  3. Recursive Digit Sum challenge Recursive Digit Sum challenge
    1
    function superDigit(n, k) {
    2
        // Write your code here
    3
    
                  
    4
        let res = 0;
    5
    
                  
  4. Palindrome Checker Palindrome Checker
    1
    function palindrome(str) {
    2
      str = str.toLowerCase();
    3
      let spaceRgx = /\s+|\W+|_/g;
    4
      str = str.replace(spaceRgx, "");
    5
      str = str.split('');
  5. XOR String challenge XOR String challenge
    1
    def strings_xor(s, t):
    2
        res = ""
    3
        for i in range(len(s)):
    4
            if s[i] == t[i]:
    5
                res = res +'0';
  6. Caesars Cipher encryption Caesars Cipher encryption
    1
    function rot13(str) {
    2
      let key = 13;
    3
      let lowerAlphabet = 'abcdefghijklmnopqrstuvwxyz'
    4
      let upperAlphabet = 'abcdefghijklmnopqrstuvwxyz'.toUpperCase();
    5
      let lowerAlphabetArr = lowerAlphabet.split('');